Billing details associated with a selected payment method.

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

Properties

name?: string

The customer's name.

email?: string

The customer's email address.

phone?: string

The customer's phone number.

address?: Checkout.Address

The customer's billing address.