| 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] |
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)