Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.05 KB

File metadata and controls

32 lines (23 loc) · 1.05 KB

PatchedTenantRequest

Tenant Serializer

Properties

Name Type Description Notes
schema_name str [optional]
name str [optional]
ready bool [optional]

Example

from authentik_client.models.patched_tenant_request import PatchedTenantRequest

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

# convert the object into a dict
patched_tenant_request_dict = patched_tenant_request_instance.to_dict()
# create an instance of PatchedTenantRequest from a dict
patched_tenant_request_from_dict = PatchedTenantRequest.from_dict(patched_tenant_request_dict)

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