interface CardPaymentInstrument {
    bankName?: string;
    cardHolderName?: string;
    customerId?: string;
    cvv?: string;
    expiryDate: CardExpiryDate;
    id?: string;
    instrumentType: InstrumentType;
    pan: string;
    status?: PaymentInstrumentStatus;
}

Hierarchy (view full)

Properties

bankName?: string
cardHolderName?: string
customerId?: string
cvv?: string
expiryDate: CardExpiryDate
id?: string
instrumentType: InstrumentType
pan: string

Generated using TypeDoc