Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.06 KB

Company.md

File metadata and controls

35 lines (27 loc) · 1.06 KB

Company

Properties

Name Type Description Notes
organization str [optional]
address1 str [optional]
address2 str [optional]
address3 str [optional]
postcode str [optional]
telephone str [optional]
fax str [optional]
email str [optional]

Example

from alfresco_core_api_client.models.company import Company

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

# convert the object into a dict
company_dict = company_instance.to_dict()
# create an instance of Company from a dict
company_form_dict = company.from_dict(company_dict)

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