Tenant response model.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Tenant ID | |
| name | str | Tenant name | |
| idp_config | Dict[str, object] | External IdP configuration | [optional] |
| settings | TenantSettingsResponse | ||
| branding | TenantBrandingResponse | [optional] |
from ksapi.models.tenant_response import TenantResponse
# TODO update the JSON string below
json = "{}"
# create an instance of TenantResponse from a JSON string
tenant_response_instance = TenantResponse.from_json(json)
# print the JSON string representation of the object
print(TenantResponse.to_json())
# convert the object into a dict
tenant_response_dict = tenant_response_instance.to_dict()
# create an instance of TenantResponse from a dict
tenant_response_from_dict = TenantResponse.from_dict(tenant_response_dict)