admin
2022-09-04 fa05f89529e05078b29606e4beda3de5cfdce485
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
//  BUInteractionMethodParas.h
//  CSJAdSDK
//
//  Created by Levi on 1/12/21.
//
 
#import <Foundation/Foundation.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface CSJInteractionMethodParams : NSObject
 
// 默认加载文案
@property (nonatomic, copy) NSString *loadingText;
 
// 落地页展示最长时间,单位s
@property (nonatomic, assign) NSInteger onlylpLoadingMaxtime;
 
// 直出落地页展示时间,单位s
@property (nonatomic, assign) NSInteger straightLpShowtime;
 
- (instancetype)initWithDictionary:(NSDictionary *)dict;
 
 
@end
 
NS_ASSUME_NONNULL_END