Partial tenant settings update.
| 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] |
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)