GSKScanFlowError

Objective-C

NS_ENUM(NSInteger, GSKScanFlowError) {
    /// User has canceled the scan flow
    GSKScanFlowUserCancelationError = 999,
    /// A general error due to a bad input parameter. Verify that your input match the API requirements.
    GSKScanFlowBadInputError = 1000,
}

Swift

enum GSKScanFlowError : Int, @unchecked Sendable

Undocumented

  • User has canceled the scan flow

    Declaration

    Objective-C

    GSKScanFlowUserCancelationError = 999

    Swift

    case userCancelationError = 999
  • A general error due to a bad input parameter. Verify that your input match the API requirements.

    Declaration

    Objective-C

    GSKScanFlowBadInputError = 1000

    Swift

    case badInputError = 1000