ProgrammaticAccessLibrary Framework Reference

  • PALFlag is a nullable flag used within various PALNonceRequest fields.

  • It has three possible values: PALFlagNull (unknown/not provided), PALFlagOn (true), and PALFlagOff (false).

  • These flags are represented by integer values: 0 for null, 1 for on, and 2 for off.

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