Program

data class Program(val cardType: CardType, val scheme: CardScheme, val name: String, val currencies: List<String>, val allowableCards: Int, val isDigital: Boolean)

Data class containing the details of a eligible programs.

Constructors

Link copied to clipboard
constructor(cardType: CardType, scheme: CardScheme, name: String, currencies: List<String>, allowableCards: Int, isDigital: Boolean)

Properties

Link copied to clipboard

The number of cards that can be issued with this program.

Link copied to clipboard

CardType Supported card types. Currently we support only VIRTUAL and PHYSICAL.

Link copied to clipboard

List of supported currencies. Example "EUR".

Link copied to clipboard

The isDigital field is related only to the 'PHYSICAL' card.

Link copied to clipboard

Program name that will be used for card creation.

Link copied to clipboard

CardScheme Supported card schemes. Currently supported VISA and MC (Mastercard).