ProgrammaticAccessLibrary Framework Reference
Stay organized with collections
Save and categorize content based on your preferences.
PALFlag
enum
PALFlag
:
NSInteger
{}
A nullable flag used for various PALNonceRequest
fields.
-
Indicates that the flag value is unknown or not provided.
Declaration
Objective-C
PALFlagNull
=
0
-
Indicates that the flag value is set to on, or true.
-
Indicates that the flag value is set to off, or false.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License
, and code samples are licensed under the Apache 2.0 License
. For details, see the Google Developers Site Policies
. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-08-20 UTC.
[[["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 2025-08-20 UTC."],[[["\u003cp\u003e\u003ccode\u003ePALFlag\u003c/code\u003e is a nullable flag used within various \u003ccode\u003ePALNonceRequest\u003c/code\u003e fields.\u003c/p\u003e\n"],["\u003cp\u003eIt has three possible values: \u003ccode\u003ePALFlagNull\u003c/code\u003e (unknown/not provided), \u003ccode\u003ePALFlagOn\u003c/code\u003e (true), and \u003ccode\u003ePALFlagOff\u003c/code\u003e (false).\u003c/p\u003e\n"],["\u003cp\u003eThese flags are represented by integer values: 0 for null, 1 for on, and 2 for off.\u003c/p\u003e\n"]]],["`PALFlag` is an enum used with `PALNonceRequest` fields. It defines three possible states: `null`, `on`, and `off`. `PALFlagNull` (value 0) signifies an unknown or absent flag value. `PALFlagOn` (value 1) represents a true or \"on\" state, and `PALFlagOff` (value 2) represents a false or \"off\" state. These states are declared in both Swift and Objective-C.\n"],null,["# ProgrammaticAccessLibrary Framework Reference\n\nPALFlag\n=======\n\n enum PALFlag : NSInteger {}\n\nA nullable flag used for various [PALNonceRequest](../Classes/PALNonceRequest.html) fields.\n- `\n ``\n ``\n `\n\n ### [PALFlagNull](#/c:@E@PALFlag@PALFlagNull)\n\n `\n ` \n Indicates that the flag value is unknown or not provided. \n\n #### Declaration\n\n Swift \n\n case null = 0\n\n Objective-C \n\n PALFlagNull = 0\n\n- `\n ``\n ``\n `\n\n ### [PALFlagOn](#/c:@E@PALFlag@PALFlagOn)\n\n `\n ` \n Indicates that the flag value is set to on, or true. \n\n #### Declaration\n\n Swift \n\n case on = 1\n\n Objective-C \n\n PALFlagOn\n\n- `\n ``\n ``\n `\n\n ### [PALFlagOff](#/c:@E@PALFlag@PALFlagOff)\n\n `\n ` \n Indicates that the flag value is set to off, or false. \n\n #### Declaration\n\n Swift \n\n case off = 2\n\n Objective-C \n\n PALFlagOff"]]