Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.42 KB

File metadata and controls

35 lines (26 loc) · 1.42 KB

TenantSettingsResponse

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

Properties

Name Type Description Notes
language SupportedLanguage
description str Tenant description
industry str Industry / company type captured during onboarding [optional]
timezone str IANA timezone (e.g. 'America/New_York')
display_name DisplayNameFormat
invite_link InviteLinkSettingsResponse

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]