Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 971 Bytes

File metadata and controls

35 lines (26 loc) · 971 Bytes

Tenant

Properties

Name Type Description Notes
id int
name str
address str
zip_code str
city str
chamber_of_commerce_id str [optional]
headquarter_id str [optional]

Example

from sensorbucket.models.tenant import Tenant

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

# convert the object into a dict
tenant_dict = tenant_instance.to_dict()
# create an instance of Tenant from a dict
tenant_from_dict = Tenant.from_dict(tenant_dict)

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