Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.1 KB

File metadata and controls

34 lines (25 loc) · 1.1 KB

CreateTenantInput

Properties

Name Type Description Notes
name str
slug str
parent_id UUID [optional]
isolation_strategy str [optional]
region_id UUID [optional]
metadata Dict[str, object] [optional]

Example

from stratum.models.create_tenant_input import CreateTenantInput

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

# convert the object into a dict
create_tenant_input_dict = create_tenant_input_instance.to_dict()
# create an instance of CreateTenantInput from a dict
create_tenant_input_from_dict = CreateTenantInput.from_dict(create_tenant_input_dict)

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