TenantDeleteResponse is the message returned from the request to delete a tenant.
Name | Type | Description | Notes |
---|---|---|---|
tenant | Tenant | [optional] |
from permify.models.tenant_delete_response import TenantDeleteResponse
# TODO update the JSON string below
json = "{}"
# create an instance of TenantDeleteResponse from a JSON string
tenant_delete_response_instance = TenantDeleteResponse.from_json(json)
# print the JSON string representation of the object
print(TenantDeleteResponse.to_json())
# convert the object into a dict
tenant_delete_response_dict = tenant_delete_response_instance.to_dict()
# create an instance of TenantDeleteResponse from a dict
tenant_delete_response_from_dict = TenantDeleteResponse.from_dict(tenant_delete_response_dict)