Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.22 KB

File metadata and controls

37 lines (28 loc) · 1.22 KB

CompanyAddress

Address of the company

Properties

Name Type Description Notes
address_street1 str [optional]
address_street2 str [optional]
address_city str [optional]
address_postcode str [optional]
address_state str [optional]
address_country str [optional]
address_lat float [optional]
address_lng float [optional]

Example

from twentycrm_client.models.company_address import CompanyAddress

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

# convert the object into a dict
company_address_dict = company_address_instance.to_dict()
# create an instance of CompanyAddress from a dict
company_address_from_dict = CompanyAddress.from_dict(company_address_dict)

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