Type Alias ShippingRecipient

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

Type declaration

  • Optionalattention?: string

    Attention line for the recipient.

  • Optionalemail?: Email

    Email address of the recipient.

  • familyName: string

    Family name of the recipient.

  • givenName: string

    Given name of the recipient.

  • Optionalphone?: Phone

    Phone number of the recipient.