Skip to content

Tenant

Properties

Name Type Description Notes
name str the tenant's unique name
description str [optional]
creation_date int Unix Epoch in seconds. Absent for the root tenant, which is reserved by the system. [optional]

Example

from lakefs_enterprise_sdk.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_form_dict = tenant.from_dict(tenant_dict)