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 2024-08-21 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, the ad itself, and extra data associated with the ad.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003etype\u003c/code\u003e property indicates the kind of event, such as start, quartile, midpoint, complete, or tap.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003ead\u003c/code\u003e property provides details about the current ad playing, if available.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eadData\u003c/code\u003e may contain additional information relevant to the event or the ad.\u003c/p\u003e\n"]]],[],null,["# GoogleInteractiveMediaAds Framework Reference\n\nIMAAdEvent\n==========\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 `\n ` \n Type of the event. \n\n #### Declaration\n\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 `\n ` \n Stringified type of the event. \n\n #### Declaration\n\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 `\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\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 `\n ` \n Extra data about the ad. \n\n #### Declaration\n\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;"]]