AI-generated Key Takeaways
-
UMPRequestErrorCode
is an enum listing error codes encountered when updating user consent information. -
Possible errors include internal issues, invalid app ID, network problems, and misconfiguration.
-
Each error code is represented by an integer value for programmatic use.
-
These codes assist in debugging and handling errors during consent updates with the Funding Choices platform.
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