PALFlag
enum PALFlag : NSInteger {}
A nullable flag used for various PALNonceRequest
fields.
-
Indicates that the flag value is unknown or not provided.
Declaration
Swift
case null = 0
Objective-C
PALFlagNull = 0
-
Indicates that the flag value is set to on, or true.
Declaration
Swift
case on = 1
Objective-C
PALFlagOn
-
Indicates that the flag value is set to off, or false.
Declaration
Swift
case off = 2
Objective-C
PALFlagOff