Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 1.63 KB

File metadata and controls

50 lines (41 loc) · 1.63 KB

Tenant

Properties

Name Type Description Notes
name str Name of the tenant
domains List[str] List of domains associated with the tenant
org_id str
timezone str Timezone of the tenant
id str Unique identifier for the tenant
short_id str Unique identifier for the tenant
region str Region of the tenant
tenant_state TenantState State of the tenant
database_connection_string str
s3_bucket_name str
type List[str]
status_reason str
expiry_date datetime
plan str
plan_config object
billing_owner str
billing_type str
milestones List[object]
created_at datetime
updated_at datetime
created_by str
updated_by str

Example

from onelens_backend_client.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)

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