You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The addressLine1 can contain the Flat number, Building or Apartment Name/number (if any) or company name (if not residential).
email
str
Email id
[optional]
city_town
str
The name of the city or town to where the address belongs.
[optional]
country_code
str
This indicates the two-character ISO code of the destination country from the ISO country list.
[optional]
name
str
Name of the recipient to which this address points.
[optional]
phone
str
This is recipient's phone number. Enter the digits with or without spaces or hyphens. The maximum characters for Phone number is 10 digits.
[optional]
postal_code
str
The postal code or ZIP code of the address. For US addresses, use either the 5-digit or 9-digit ZIP code in one of the following formats: '12345' or '12345-6789'. If you use a different format, such as 12345- or 123451234, will receive an error.
[optional]
state_province
str
The State or Province of the address. For a US or Canadian address, it is the 2-letter state or province code.
[optional]
Example
fromshipping.models.return_label_response_to_addressimportReturnLabelResponseToAddress# TODO update the JSON string belowjson="{}"# create an instance of ReturnLabelResponseToAddress from a JSON stringreturn_label_response_to_address_instance=ReturnLabelResponseToAddress.from_json(json)
# print the JSON string representation of the objectprint(ReturnLabelResponseToAddress.to_json())
# convert the object into a dictreturn_label_response_to_address_dict=return_label_response_to_address_instance.to_dict()
# create an instance of ReturnLabelResponseToAddress from a dictreturn_label_response_to_address_from_dict=ReturnLabelResponseToAddress.from_dict(return_label_response_to_address_dict)