TapCommon-Unity/Plugins/iOS/TapCommonSDK.framework/Headers/TapConfig.h

29 lines
711 B
C
Raw Normal View History

2022-09-13 23:06:05 +08:00
//
// TapConfig.h
// TapBootstrapSDK
//
// Created by Bottle K on 2021/2/24.
//
#import <Foundation/Foundation.h>
#import <TapCommonSDK/TapDBConfig.h>
#import <TapCommonSDK/TapBillboardConfig.h>
NS_ASSUME_NONNULL_BEGIN
typedef NS_ENUM (NSInteger, TapSDKRegionType) {
TapSDKRegionTypeCN,
TapSDKRegionTypeIO
};
@interface TapConfig : NSObject
@property (nonatomic, copy) NSString *clientId;
@property (nonatomic, copy) NSString *clientToken;
@property (nonatomic, copy) NSString *serverURL;
@property (nonatomic, assign) TapSDKRegionType region;
@property (nonatomic, strong) TapDBConfig * dbConfig;
@property (nonatomic, strong) TapBillboardConfig *tapBillboardConfig;
@end
NS_ASSUME_NONNULL_END