Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 3.28 KB

File metadata and controls

41 lines (32 loc) · 3.28 KB

DomesticShipmentResponseFromAddress

Properties

Name Type Description Notes
address_line1 str The addressLine1 can contain the Flat number, Building or Apartment Name/number (if any) or company name (if not residential). [optional]
address_line2 str The addressLine2 contains Street address or Landmark (if any). [optional]
address_line3 str The addressLine3 contains P.O.Box (if any) near the address. [optional]
city_town str The name of the city or town to where the address belongs. [optional]
company str This indicates the name of the company, in case if the sender address is not residential. [optional]
country_code str This indicates the two-character ISO code of the source country from the ISO country list. [optional]
email str The email address of the sender. It can be person's email address or company email address (for non-residential). [optional]
name str Name of the sender to which this address points. [optional]
phone str This is sender'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]
residential bool The specified adress can be Residential or Official. In case if the adress is Residential, the boolean value will be 'true', else it will take 'false'. [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]
induction_postal_code str The postal code where the shipment is tendered to the carrier. If an induction postal code is specified in the "fromAddress", it will be used for rate calculations and determining manifest eligibility instead of the standard postal code. If not specified, the postal code from the "fromAddress" will be used. [optional]

Example

from shipping.models.domestic_shipment_response_from_address import DomesticShipmentResponseFromAddress

# TODO update the JSON string below
json = "{}"
# create an instance of DomesticShipmentResponseFromAddress from a JSON string
domestic_shipment_response_from_address_instance = DomesticShipmentResponseFromAddress.from_json(json)
# print the JSON string representation of the object
print(DomesticShipmentResponseFromAddress.to_json())

# convert the object into a dict
domestic_shipment_response_from_address_dict = domestic_shipment_response_from_address_instance.to_dict()
# create an instance of DomesticShipmentResponseFromAddress from a dict
domestic_shipment_response_from_address_from_dict = DomesticShipmentResponseFromAddress.from_dict(domestic_shipment_response_from_address_dict)

[Back to Model list] [Back to API list] [Back to README]