Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.18 KB

File metadata and controls

32 lines (23 loc) · 1.18 KB

TenantSettingsResponse

Tenant settings as exposed via API (no internal S3 URIs).

Properties

Name Type Description Notes
language SupportedLanguage
description str Tenant description
timezone str IANA timezone (e.g. 'America/New_York')

Example

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)

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