TenantCreateResponse is the message returned from the request to create a tenant.
Name | Type | Description | Notes |
---|---|---|---|
tenant | Tenant | [optional] |
from permify_async.models.tenant_create_response import TenantCreateResponse
# TODO update the JSON string below
json = "{}"
# create an instance of TenantCreateResponse from a JSON string
tenant_create_response_instance = TenantCreateResponse.from_json(json)
# print the JSON string representation of the object
print(TenantCreateResponse.to_json())
# convert the object into a dict
tenant_create_response_dict = tenant_create_response_instance.to_dict()
# create an instance of TenantCreateResponse from a dict
tenant_create_response_from_dict = TenantCreateResponse.from_dict(tenant_create_response_dict)