Billing details associated with a selected payment method.

interface BillingDetails {
    name?: string;
    email?: string;
    phone?: string;
    address?: Partial<Checkout.Address>;
}

Properties

name?: string

The customer's name.

email?: string

The customer's email address.

phone?: string

The customer's phone number.

address?: Partial<Checkout.Address>

The collected billing address fields, which can omit the country.