[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-12-04 UTC."],[[["\u003cp\u003e\u003ccode\u003eUMPPrivacyOptionsRequirementStatus\u003c/code\u003e defines whether a user needs access to modify privacy options.\u003c/p\u003e\n"],["\u003cp\u003eIt has three states: \u003ccode\u003eunknown\u003c/code\u003e, \u003ccode\u003erequired\u003c/code\u003e, and \u003ccode\u003enotRequired\u003c/code\u003e, indicating if the requirement is unknown, mandatory, or unnecessary, respectively.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003erequired\u003c/code\u003e means the user must be provided a way to change their privacy settings.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003enotRequired\u003c/code\u003e signifies that consent is either not needed or the consent type doesn't allow modification.\u003c/p\u003e\n"]]],[],null,["# GoogleUserMessagingPlatform Framework Reference\n\nUMPPrivacyOptionsRequirementStatus\n==================================\n\n enum UMPPrivacyOptionsRequirementStatus : NSInteger {}\n\nState values for whether the user needs to be provided a way to modify their privacy options.\n- `\n ``\n ``\n `\n\n ### [UMPPrivacyOptionsRequirementStatusUnknown](#/c:@E@UMPPrivacyOptionsRequirementStatus@UMPPrivacyOptionsRequirementStatusUnknown)\n\n `\n ` \n Requirement unknown. \n\n #### Declaration\n\n Swift \n\n case unknown = 0\n\n Objective-C \n\n UMPPrivacyOptionsRequirementStatusUnknown = 0\n\n- `\n ``\n ``\n `\n\n ### [UMPPrivacyOptionsRequirementStatusRequired](#/c:@E@UMPPrivacyOptionsRequirementStatus@UMPPrivacyOptionsRequirementStatusRequired)\n\n `\n ` \n A way must be provided for the user to modify their privacy options. \n\n #### Declaration\n\n Swift \n\n case required = 1\n\n Objective-C \n\n UMPPrivacyOptionsRequirementStatusRequired = 1\n\n- `\n ``\n ``\n `\n\n ### [UMPPrivacyOptionsRequirementStatusNotRequired](#/c:@E@UMPPrivacyOptionsRequirementStatus@UMPPrivacyOptionsRequirementStatusNotRequired)\n\n `\n ` \n User does not need to modify their privacy options. Either consent is not required, or the\n consent type does not require modification. \n\n #### Declaration\n\n Swift \n\n case notRequired = 2\n\n Objective-C \n\n UMPPrivacyOptionsRequirementStatusNotRequired = 2"]]