DataDeleteRequest defines the structure of a request to delete data. It includes the tenant_id and filters for selecting tuples and attributes to be deleted.
Name | Type | Description | Notes |
---|---|---|---|
tuple_filter | TupleFilter | [optional] | |
attribute_filter | AttributeFilter | [optional] |
from permify_async.models.data_delete_body import DataDeleteBody
# TODO update the JSON string below
json = "{}"
# create an instance of DataDeleteBody from a JSON string
data_delete_body_instance = DataDeleteBody.from_json(json)
# print the JSON string representation of the object
print(DataDeleteBody.to_json())
# convert the object into a dict
data_delete_body_dict = data_delete_body_instance.to_dict()
# create an instance of DataDeleteBody from a dict
data_delete_body_from_dict = DataDeleteBody.from_dict(data_delete_body_dict)