AI-generated Key Takeaways
-
UMPRequestErrorCode
is an enum listing error codes encountered when updating user consent information. -
Possible error codes include internal errors, invalid application IDs, and network communication issues with Funding Choices.
-
Each error code has a corresponding integer value used for identification.
-
A
misconfiguration
error code exists but is undocumented.
UMPRequestErrorCode
enum UMPRequestErrorCode : NSInteger {}
Error codes used when making requests to update consent info.
-
< Internal error.
Declaration
Swift
case `internal` = 1
Objective-C
UMPRequestErrorCodeInternal = 1
-
< The application’s app ID is invalid.
Declaration
Swift
case invalidAppID = 2
Objective-C
UMPRequestErrorCodeInvalidAppID = 2
-
< Network error communicating with Funding Choices.
Declaration
Swift
case network = 3
Objective-C
UMPRequestErrorCodeNetwork = 3
-
Undocumented
Declaration
Swift
case misconfiguration = 4
Objective-C
UMPRequestErrorCodeMisconfiguration = 4