CardType

public enum CardType : String, Codable

Card types.

  • Credit card type case.

    Declaration

    Swift

    case credit = "CREDIT"
  • Debit card type case.

    Declaration

    Swift

    case debit = "DEBIT"
  • Prepaid card type case.

    Declaration

    Swift

    case prepaid = "PREPAID"
  • Unknown card type case.

    Declaration

    Swift

    case unknown = "UNKNOWN"