IMAAdEvent
@interface IMAAdEvent : NSObject
Simple data class used to transport ad playback information.
-
Type of the event.
Declaration
Swift
var type: IMAAdEventType { get }
Objective-C
@property (readonly, nonatomic) IMAAdEventType type;
-
Stringified type of the event.
Declaration
Swift
var typeString: String! { get }
Objective-C
@property (readonly, copy, nonatomic) NSString *typeString;
-
Extra data about the ad. Can be nil.
Declaration
Swift
var adData: [String : Any]! { get }
Objective-C
@property (readonly, copy, nonatomic) NSDictionary<NSString *, id> *adData;