Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

TenantDeleteResponse.md

File metadata and controls

30 lines (21 loc) · 1.04 KB

TenantDeleteResponse

TenantDeleteResponse is the message returned from the request to delete a tenant.

Properties

Name Type Description Notes
tenant Tenant [optional]

Example

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)

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