Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.25 KB

TenantListRequest.md

File metadata and controls

31 lines (22 loc) · 1.25 KB

TenantListRequest

TenantListRequest is the message used for the request to list all tenants.

Properties

Name Type Description Notes
page_size int page_size is the number of tenants to be returned in the response. The value should be between 1 and 100. [optional]
continuous_token str continuous_token is an optional parameter used for pagination. It should be the value received in the previous response. [optional]

Example

from permify.models.tenant_list_request import TenantListRequest

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

# convert the object into a dict
tenant_list_request_dict = tenant_list_request_instance.to_dict()
# create an instance of TenantListRequest from a dict
tenant_list_request_from_dict = TenantListRequest.from_dict(tenant_list_request_dict)

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