Skip to content

TenantList

Properties

Name Type Description Notes
pagination Pagination
results List[Tenant]

Example

from lakefs_enterprise_sdk.models.tenant_list import TenantList

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

# convert the object into a dict
tenant_list_dict = tenant_list_instance.to_dict()
# create an instance of TenantList from a dict
tenant_list_form_dict = tenant_list.from_dict(tenant_list_dict)