| Name |
Type |
Description |
Notes |
| name |
str |
|
[optional] |
| slug |
str |
|
[optional] |
| status |
str |
|
[optional] |
| metadata |
Dict[str, object] |
|
[optional] |
from stratum.models.update_tenant_input import UpdateTenantInput
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateTenantInput from a JSON string
update_tenant_input_instance = UpdateTenantInput.from_json(json)
# print the JSON string representation of the object
print(UpdateTenantInput.to_json())
# convert the object into a dict
update_tenant_input_dict = update_tenant_input_instance.to_dict()
# create an instance of UpdateTenantInput from a dict
update_tenant_input_from_dict = UpdateTenantInput.from_dict(update_tenant_input_dict)
[Back to Model list] [Back to API list] [Back to README]