Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.4 KB

File metadata and controls

37 lines (28 loc) · 1.4 KB

ShipmentInternationalFromAddress

Properties

Name Type Description Notes
address_line1 str
address_line2 str [optional]
address_line3 str [optional]
city_town str [optional]
country_code str
name str [optional]
phone str [optional]
postal_code str
state_province str

Example

from shipping.models.shipment_international_from_address import ShipmentInternationalFromAddress

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

# convert the object into a dict
shipment_international_from_address_dict = shipment_international_from_address_instance.to_dict()
# create an instance of ShipmentInternationalFromAddress from a dict
shipment_international_from_address_from_dict = ShipmentInternationalFromAddress.from_dict(shipment_international_from_address_dict)

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