interface ShippingDetails {
    address: undefined | Address;
    name?: string;
    phone?: string;
}

Properties

Properties

address: undefined | Address

The recipient's address.

name?: string

The recipient's name.

phone?: string

The recipient's phone (including extension).