The current ad that is playing or just played. This will be nil except for
events where an ad is available (start, quartiles, midpoint, complete, and tap).
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[[["\u003cp\u003eIMAAdEvent is a simple data class used to transport ad playback information.\u003c/p\u003e\n"],["\u003cp\u003eIt provides details about the type of ad event, such as start, quartiles, midpoint, complete, and tap.\u003c/p\u003e\n"],["\u003cp\u003eIMAAdEvent includes information about the current ad being played, along with any extra data associated with it.\u003c/p\u003e\n"],["\u003cp\u003eThe class exposes properties like \u003ccode\u003etype\u003c/code\u003e, \u003ccode\u003etypeString\u003c/code\u003e, \u003ccode\u003ead\u003c/code\u003e, and \u003ccode\u003eadData\u003c/code\u003e to access ad event information.\u003c/p\u003e\n"]]],["IMAAdEvent is a data class for ad playback information. It contains the `type` of the event and its stringified version, `typeString`. It also holds the `ad` object that is currently playing, if applicable. Lastly, it can store additional information about the ad in the `adData` dictionary. These properties are accessible as read-only, and `ad` and `adData` can be nullable.\n"],null,["IMAAdEvent \n\n @interface IMAAdEvent : NSObject\n\nSimple data class used to transport ad playback information.\n- `\n ``\n ``\n `\n\n [type](#/c:objc(cs)IMAAdEvent(py)type)`\n ` \n Type of the event. \n\n Declaration \n Swift \n\n var type: ../Enums/IMAAdEventType.html { get }\n\n Objective-C \n\n @property (nonatomic, readonly) ../Enums/IMAAdEventType.html type;\n\n- `\n ``\n ``\n `\n\n [typeString](#/c:objc(cs)IMAAdEvent(py)typeString)`\n ` \n Stringified type of the event. \n\n Declaration \n Swift \n\n var typeString: String { get }\n\n Objective-C \n\n @property (nonatomic, copy, readonly) NSString *_Nonnull typeString;\n\n- `\n ``\n ``\n `\n\n [ad](#/c:objc(cs)IMAAdEvent(py)ad)`\n ` \n The current ad that is playing or just played. This will be nil except for\n events where an ad is available (start, quartiles, midpoint, complete, and tap). \n\n Declaration \n Swift \n\n var ad: ../Classes/IMAAd.html? { get }\n\n Objective-C \n\n @property (nonatomic, readonly, nullable) ../Classes/IMAAd.html *ad;\n\n- `\n ``\n ``\n `\n\n [adData](#/c:objc(cs)IMAAdEvent(py)adData)`\n ` \n Extra data about the ad. \n\n Declaration \n Swift \n\n var adData: [String : Any]? { get }\n\n Objective-C \n\n @property (nonatomic, copy, readonly, nullable) NSDictionary\u003cNSString *, id\u003e *adData;"]]