Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.16 KB

File metadata and controls

34 lines (25 loc) · 1.16 KB

TenantResponse

Tenant response model.

Properties

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]

Example

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)

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