VirtualCardState

public enum VirtualCardState : Hashable, CustomStringConvertible

State of the card.

  • issued: Card is in an issued state and ready to be used.
  • failed: Card is in a failed state and needs to be rectified.
  • closed: Card has been closed.
  • suspended: Card has been suspended.
  • unknown: API Evolution - if this occurs, it may mean you need to update the library.
  • Backwards compatibility guard for catching new enum values added by the service - check you have the latest version of the SDK

    Declaration

    Swift

    case unknown(String)

Conformance: CustomStringConvertible

  • Declaration

    Swift

    public var description: String { get }