Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.4 KB

File metadata and controls

35 lines (26 loc) · 1.4 KB

TenantSettingsUpdate

Partial tenant settings update.

Properties

Name Type Description Notes
language SupportedLanguage [optional]
description str Tenant description [optional]
timezone str IANA timezone (e.g. 'America/New_York') [optional]
brand_name str Custom brand name for logo [optional]
brand_color str Primary brand hex color (e.g. '#2563eb') [optional]
theme_overrides Dict[str, str] Custom CSS variable overrides [optional]

Example

from ksapi.models.tenant_settings_update import TenantSettingsUpdate

# TODO update the JSON string below
json = "{}"
# create an instance of TenantSettingsUpdate from a JSON string
tenant_settings_update_instance = TenantSettingsUpdate.from_json(json)
# print the JSON string representation of the object
print(TenantSettingsUpdate.to_json())

# convert the object into a dict
tenant_settings_update_dict = tenant_settings_update_instance.to_dict()
# create an instance of TenantSettingsUpdate from a dict
tenant_settings_update_from_dict = TenantSettingsUpdate.from_dict(tenant_settings_update_dict)

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