Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.01 KB

Tenant.md

File metadata and controls

32 lines (23 loc) · 1.01 KB

Tenant

Tenant represents a tenant with an id, a name, and a timestamp indicating when it was created.

Properties

Name Type Description Notes
id str The ID of the tenant. [optional]
name str The name of the tenant. [optional]
created_at datetime The time at which the tenant was created. [optional]

Example

from permify_async.models.tenant import Tenant

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

# convert the object into a dict
tenant_dict = tenant_instance.to_dict()
# create an instance of Tenant from a dict
tenant_from_dict = Tenant.from_dict(tenant_dict)

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