Billing address of a Virtual Card.

interface BillingAddress {
    addressLine1: string;
    addressLine2?: string;
    city: string;
    country: string;
    postalCode: string;
    state: string;
}

Properties

addressLine1: string

First line of the billing address.

addressLine2?: string

Second line of the billing address.

city: string

City of the billing address.

country: string

Country of the billing address.

postalCode: string

Postal Code of the billing address.

state: string

State of the billing address.