Interface ShippingRecipient

interface ShippingRecipient {
    attention?: string;
    email?: string;
    familyName: string;
    givenName: string;
    phone?: string;
}

Properties

attention?: string

Attention line for the recipient.

email?: string

Email address of the recipient.

familyName: string

Family name of the recipient.

givenName: string

Given name of the recipient.

phone?: string

Phone number of the recipient.