Update tenant request model.
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Optional tenant name to update | [optional] |
| idp_config | IdpConfig | [optional] | |
| settings | TenantSettingsUpdate | [optional] |
from ksapi.models.update_tenant_request import UpdateTenantRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateTenantRequest from a JSON string
update_tenant_request_instance = UpdateTenantRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateTenantRequest.to_json())
# convert the object into a dict
update_tenant_request_dict = update_tenant_request_instance.to_dict()
# create an instance of UpdateTenantRequest from a dict
update_tenant_request_from_dict = UpdateTenantRequest.from_dict(update_tenant_request_dict)