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
29 lines
800 B
//
|
|
// APRiskRemoteLoggerProtocol.h
|
|
// APPSecuritySDKAdapter
|
|
//
|
|
// Created by hongren on 2020/9/7.
|
|
// Copyright © 2020 Alipay. All rights reserved.
|
|
//
|
|
|
|
@protocol APRiskRemoteLoggerProtocol <NSObject>
|
|
|
|
@required
|
|
- (void)writeLogWithActionId:(NSString *)event
|
|
extParams:(NSArray *)args
|
|
appId:(NSString *)appId
|
|
seed:(NSString *)seed
|
|
ucId:(NSString *)ucId;
|
|
|
|
@required
|
|
- (void)writeLogWithActionId:(NSString *)event
|
|
extParams:(NSArray *)args
|
|
appId:(NSString *)appId
|
|
seed:(NSString *)seed
|
|
ucId:(NSString *)ucId
|
|
bizType:(NSString *)bizType;
|
|
|
|
@required
|
|
- (void)writeEventLog:(NSDictionary *)dict;
|
|
|
|
@end
|