AI-generated Key Takeaways
-
UMPRequestParameters is an object used to send parameters on updates to user consent information.
-
The
tagForUnderAgeOfConsent
property indicates whether the user is tagged for under age of consent. -
The
debugSettings
property allows for setting 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;