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 |
from onelens_backend_client.models.update_tenant_response import UpdateTenantResponse
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateTenantResponse from a JSON string
update_tenant_response_instance = UpdateTenantResponse.from_json(json)
# print the JSON string representation of the object
print(UpdateTenantResponse.to_json())
# convert the object into a dict
update_tenant_response_dict = update_tenant_response_instance.to_dict()
# create an instance of UpdateTenantResponse from a dict
update_tenant_response_form_dict = update_tenant_response.from_dict(update_tenant_response_dict)