Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

TenantCreateRequest.md

File metadata and controls

31 lines (22 loc) · 1.11 KB

TenantCreateRequest

TenantCreateRequest is the message used for the request to create a tenant.

Properties

Name Type Description Notes
id str id is a unique identifier for the tenant. [optional]
name str name is the name of the tenant. [optional]

Example

from permify.models.tenant_create_request import TenantCreateRequest

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

# convert the object into a dict
tenant_create_request_dict = tenant_create_request_instance.to_dict()
# create an instance of TenantCreateRequest from a dict
tenant_create_request_from_dict = TenantCreateRequest.from_dict(tenant_create_request_dict)

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