SCAdVariants
@interface SCAdVariants : NSObject
This class holds an opener, closer and/or bumper for any video.
-
url string of the opener
Declaration
Objective-C
@property (nonatomic) NSString *_Nullable opener;
-
url string of the closer
Declaration
Objective-C
@property (nonatomic) NSString *_Nullable closer;
-
url string of the bumper
Declaration
Objective-C
@property (nonatomic) NSString *_Nullable bumper;
-
force opener playback
Declaration
Objective-C
@property (nonatomic) BOOL forceOpener;
-
force closer playback
Declaration
Objective-C
@property (nonatomic) BOOL forceCloser;
-
force bumper playback
Declaration
Objective-C
@property (nonatomic) BOOL forceBumper;
-
Initialize a Variant object
Declaration
Objective-C
- (nonnull id)initWithOpener:(nullable NSString *)opener closer:(nullable NSString *)closer bumper:(nullable NSString *)bumper;