A customer's name and postal address.

interface ContactDetails {
    name?: string;
    address?: Checkout.Address;
}

Properties

Properties

name?: string

The customer's name.

address?: Checkout.Address

The customer's postal address.