GoogleMobileAds Framework Reference

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.

  • If the user’s latitude, longitude, and accuracy are not specified, userHasLocation returns NO, and userLatitude, userLongitude, and userLocationAccuracyInMeters return 0.

    Declaration

    Objective-C

    @property (readonly, assign, nonatomic) BOOL userHasLocation;
  • User’s latitude set in GADRequest.

    Declaration

    Objective-C

    @property (readonly, assign, nonatomic) CGFloat userLatitude;
  • User’s longitude set in GADRequest.

    Declaration

    Objective-C

    @property (readonly, assign, nonatomic) CGFloat userLongitude;
  • The accuracy, in meters, of the user’s location data.

    Declaration

    Objective-C

    @property (readonly, assign, nonatomic) CGFloat userLocationAccuracyInMeters;
  • Description of the user’s location, in free form text, set in GADRequest. If not available, returns nil. This may be set even if userHasLocation is NO.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic, nullable)
        NSString *userLocationDescription;
  • Keywords set in GADRequest. Returns nil if no keywords are set.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic, nullable) NSArray *userKeywords;
  • The additional parameters set by the application. This property allows you to 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

    Objective-C

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

    Declaration

    Objective-C

    @property (readonly, assign, nonatomic) BOOL isTesting;
  • Deprecated. User’s gender set in GADRequest. If not specified, returns kGADGenderUnknown.

    Declaration

    Objective-C

    @property (readonly, assign, nonatomic) GADGender userGender;
  • Deprecated. User’s birthday set in GADRequest. If not specified, returns nil.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic, nullable) NSDate *userBirthday;