GoogleMobileAds Framework Reference

  • GADCustomEventRequest objects pass optional ad request data from publishers to custom events, used for sending requests to third-party ad networks.

  • Publishers can provide keywords, additional parameters, and testing indicators through a GADCustomEventRequest.

  • userKeywords are taken from the GADRequest and passed to custom event; additionalParameters offer a way to send custom data; isTesting reflects the testing status from GADRequest.

GADCustomEventRequest


@interface GADCustomEventRequest : NSObject

Specifies optional ad request targeting parameters that are provided by the publisher and are forwarded to custom events for purposes of populating an ad request to a 3rd party ad network.

  • Keywords set in GADRequest. Returns nil if no keywords are set.

    Declaration

    Swift

    var userKeywords: [Any]? { get }

    Objective-C

    @property (nonatomic, copy, readonly, nullable) NSArray *userKeywords;
  • The additional parameters set by the application. This property lets you pass additional information from your application to your Custom Event object. To do so, create an instance of GADCustomEventExtras to pass to GADRequest -registerAdNetworkExtras:. The instance should have an NSDictionary set for a particular custom event label. That NSDictionary becomes the additionalParameters here.

    Declaration

    Swift

    var additionalParameters: [AnyHashable : Any]? { get }

    Objective-C

    @property (nonatomic, copy, readonly, nullable) NSDictionary *additionalParameters;
  • Indicates whether the testing property has been set in GADRequest.

    Declaration

    Swift

    var isTesting: Bool { get }

    Objective-C

    @property (nonatomic, readonly) BOOL isTesting;