Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

File metadata and controls

30 lines (21 loc) · 1.07 KB

TenantDeleteResponse

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

Properties

Name Type Description Notes
tenant_id str tenant_id is the tenant id that was deleted. [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_form_dict = tenant_delete_response.from_dict(tenant_delete_response_dict)

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