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.
20 lines
439 B
20 lines
439 B
//
|
|
// APRiskRpcConfiguration.h
|
|
// APPSecuritySDKAdapter
|
|
//
|
|
// Created by hongren on 2020/9/8.
|
|
// Copyright © 2020 Alipay. All rights reserved.
|
|
//
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface APRiskRpcConfiguration : NSObject
|
|
// 超时时间
|
|
@property(nonatomic, assign) int timeout;
|
|
|
|
// 网关地址
|
|
@property(nonatomic, strong) NSString* gatewayURL;
|
|
|
|
// workspaceid和appid
|
|
@property(nonatomic, strong) NSDictionary *headers;
|
|
|
|
@end
|