Contains information about specific prepaid card program.

interface Program {
    allowableCards: number;
    cardType: CardType;
    currencies: string[];
    isDigital: boolean;
    name: string;
    scheme: CardScheme;
}

Properties

allowableCards: number

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

cardType: CardType

Card type.

currencies: string[]

List of supported currencies.

Currency alphabetic codes as specified by ISO 4217.

Example

["EUR", "BGN"]
isDigital: boolean

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

name: string

Program name that will be used for card creation

scheme: CardScheme

Card scheme.