AI-generated Key Takeaways
-
UMPConsentStatus
is an enum defining the User Messaging Platform (UMP) consent status with values indicating whether consent is unknown, required, not required, or obtained. -
The possible values for
UMPConsentStatus
areunknown
,required
,notRequired
, andobtained
, represented by integer values 0, 1, 2, and 3 respectively. -
While most consent statuses are documented, the
obtained
status currently lacks documentation detailing its specific meaning and implications.
UMPConsentStatus
enum UMPConsentStatus : NSInteger {}
Consent status values.
-
< Unknown consent status.
Declaration
Swift
case unknown = 0
Objective-C
UMPConsentStatusUnknown = 0
-
< User consent required but not yet obtained.
Declaration
Swift
case required = 1
Objective-C
UMPConsentStatusRequired = 1
-
< Consent not required.
Declaration
Swift
case notRequired = 2
Objective-C
UMPConsentStatusNotRequired = 2
-
Undocumented
Declaration
Swift
case obtained = 3
Objective-C
UMPConsentStatusObtained = 3