Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.19 KB

TenantListResponse.md

File metadata and controls

31 lines (22 loc) · 1.19 KB

TenantListResponse

TenantListResponse is the message returned from the request to list all tenants.

Properties

Name Type Description Notes
tenants List[Tenant] tenants is a list of tenants. [optional]
continuous_token str continuous_token is a string that can be used to paginate and retrieve the next set of results. [optional]

Example

from permify.models.tenant_list_response import TenantListResponse

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

# convert the object into a dict
tenant_list_response_dict = tenant_list_response_instance.to_dict()
# create an instance of TenantListResponse from a dict
tenant_list_response_from_dict = TenantListResponse.from_dict(tenant_list_response_dict)

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