洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
800 B

7 months ago
  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