GoogleUserMessagingPlatform Framework Reference

  • UMPRequestParameters objects store data sent when updating user consent information.

  • The tagForUnderAgeOfConsent property (Boolean) indicates if the user is under the age of consent.

  • The debugSettings property allows for specifying debug settings for the request.

UMPRequestParameters


@interface UMPRequestParameters : NSObject <NSCopying>

Parameters sent on updates to user consent info.

  • Indicates whether the user is tagged for under age of consent.

    Declaration

    Swift

    var isTaggedForUnderAgeOfConsent: Bool { get set }

    Objective-C

    @property (nonatomic) BOOL tagForUnderAgeOfConsent;
  • Debug settings for the request.

    Declaration

    Swift

    @NSCopying var debugSettings: DebugSettings? { get set }

    Objective-C

    @property (nonatomic, copy, nullable) UMPDebugSettings *debugSettings;