interface StoredPaymentMethodData {
    cardBrand?: CardBrand;
    cvcRequiredForPayment?: boolean;
    expirationDate?: string;
    id: string;
    maskedCardNumber?: string;
    paymentMethodDataOwner: {
        name: string;
    };
    type: PaymentMethodType;
}

Properties

cardBrand?: CardBrand
cvcRequiredForPayment?: boolean
expirationDate?: string
id: string
maskedCardNumber?: string
paymentMethodDataOwner: {
    name: string;
}

Type declaration

  • name: string