CheckoutAuthCheckError

public enum CheckoutAuthCheckError : String, Decodable, Encodable, JsonApiResponse, WalletErrorApiResponse

Undocumented

  • Invalid authorization context.

    Declaration

    Swift

    case invalidContext
  • The session has not been created. You must create the session before the authorization check.

    Declaration

    Swift

    case sessionDoesNotExist
  • The session has expired, you need to create a new session.

    Declaration

    Swift

    case sessionExpired
  • Unsupported authorization type for user.

    Declaration

    Swift

    case unsupportedAuthType
  • Ended attempts to enter the code.

    Declaration

    Swift

    case verifyAttemptsExceeded
  • The authorization code is invalid.

    Declaration

    Swift

    case invalidAnswer
  • Declaration

    Swift

    public init(from decoder: Decoder) throws
  • Declaration

    Swift

    public func encode(to encoder: Encoder) throws