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.
-
Declaration
Swift
case issued
-
Declaration
Swift
case failed
-
Declaration
Swift
case closed
-
Declaration
Swift
case suspended
-
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)
-
Declaration
Swift
public var description: String { get }