APRiskRemoteLoggerProtocol.h 800 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // APRiskRemoteLoggerProtocol.h
  3. // APPSecuritySDKAdapter
  4. //
  5. // Created by hongren on 2020/9/7.
  6. // Copyright © 2020 Alipay. All rights reserved.
  7. //
  8. @protocol APRiskRemoteLoggerProtocol <NSObject>
  9. @required
  10. - (void)writeLogWithActionId:(NSString *)event
  11. extParams:(NSArray *)args
  12. appId:(NSString *)appId
  13. seed:(NSString *)seed
  14. ucId:(NSString *)ucId;
  15. @required
  16. - (void)writeLogWithActionId:(NSString *)event
  17. extParams:(NSArray *)args
  18. appId:(NSString *)appId
  19. seed:(NSString *)seed
  20. ucId:(NSString *)ucId
  21. bizType:(NSString *)bizType;
  22. @required
  23. - (void)writeEventLog:(NSDictionary *)dict;
  24. @end