Virtual Card sealed attributes.

interface VirtualCardSealedAttributes {
    alias: string;
    billingAddress?: BillingAddress;
    cardHolder: string;
    csc: string;
    expiry: Expiry;
    pan: string;
}

Hierarchy (view full)

Properties

alias: string

Deprecated

Use client side sealed metadata instead

billingAddress?: BillingAddress

Billing address associated with the virtual card.

cardHolder: string

Name of the virtual card holder.

csc: string

Card Security Code of the virtual card.

expiry: Expiry

Expiry information of the card.

pan: string

Permanent Account Number of the virtual card.