Skip to content

AddressRequest

Properties

Name Type Description Notes
full_name str [optional]
company_name str [optional]
address_line1 str
address_line2 str [optional]
address_line3 str [optional]
city str
county str [optional]
postcode str [optional]
country_code str

Example

from click_and_drop_api.models.address_request import AddressRequest

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

# convert the object into a dict
address_request_dict = address_request_instance.to_dict()
# create an instance of AddressRequest from a dict
address_request_from_dict = AddressRequest.from_dict(address_request_dict)
[Back to Model list] [Back to API list] [Back to README]