interface Card {
    accountId: string;
    activationDate?: string;
    bin?: string;
    cardId: string;
    cardType: CardType;
    createdDate: string;
    currency: string;
    customerId: string;
    deliveryAddress?: DeliveryAddress;
    expiry?: CardExpiryDate;
    externalId?: string;
    isPinSet: boolean;
    lastFour?: string;
    mobile?: string;
    programName: string;
    scheme: CardScheme;
    status: CardStatus;
    tokenizations?: MobileWalletTokenizationList;
}

Properties

accountId: string
activationDate?: string
bin?: string
cardId: string
cardType: CardType
createdDate: string
currency: string
customerId: string
deliveryAddress?: DeliveryAddress
externalId?: string
isPinSet: boolean
lastFour?: string
mobile?: string
programName: string
scheme: CardScheme
status: CardStatus

Generated using TypeDoc