Type alias ShippingRecipient

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

Type declaration

  • Optional attention?: string

    Attention line for the recipient.

  • Optional email?: Email

    Email address of the recipient.

  • familyName: string

    Family name of the recipient.

  • givenName: string

    Given name of the recipient.

  • Optional phone?: Phone

    Phone number of the recipient.