Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

TenantCreateResponse.md

File metadata and controls

30 lines (21 loc) · 1.05 KB

TenantCreateResponse

TenantCreateResponse is the message returned from the request to create a tenant.

Properties

Name Type Description Notes
tenant Tenant [optional]

Example

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)

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