Tenant settings as exposed via API (no internal S3 URIs).
| Name | Type | Description | Notes |
|---|---|---|---|
| language | SupportedLanguage | ||
| description | str | Tenant description | |
| timezone | str | IANA timezone (e.g. 'America/New_York') |
from ksapi.models.tenant_settings_response import TenantSettingsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of TenantSettingsResponse from a JSON string
tenant_settings_response_instance = TenantSettingsResponse.from_json(json)
# print the JSON string representation of the object
print(TenantSettingsResponse.to_json())
# convert the object into a dict
tenant_settings_response_dict = tenant_settings_response_instance.to_dict()
# create an instance of TenantSettingsResponse from a dict
tenant_settings_response_from_dict = TenantSettingsResponse.from_dict(tenant_settings_response_dict)