ProgrammaticAccessLibrary Framework Reference

  • PALFlag is a nullable enumeration used for various fields in PALNonceRequest.

  • PALFlag has three possible values: PALFlagNull, PALFlagOn, and PALFlagOff.

  • PALFlagNull indicates the flag value is unknown or not provided.

  • PALFlagOn indicates the flag value is set to on or true.

  • PALFlagOff indicates the flag value is set to off or false.

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