Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

DeleteRelationshipsBody.md

File metadata and controls

29 lines (20 loc) · 1.01 KB

DeleteRelationshipsBody

Properties

Name Type Description Notes
filter TupleFilter [optional]

Example

from permify.models.delete_relationships_body import DeleteRelationshipsBody

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

# convert the object into a dict
delete_relationships_body_dict = delete_relationships_body_instance.to_dict()
# create an instance of DeleteRelationshipsBody from a dict
delete_relationships_body_from_dict = DeleteRelationshipsBody.from_dict(delete_relationships_body_dict)

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