Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.12 KB

RelationshipDeleteResponse.md

File metadata and controls

29 lines (20 loc) · 1.12 KB

RelationshipDeleteResponse

Properties

Name Type Description Notes
snap_token str The snap token to avoid stale cache, see more details on Snap Tokens [optional]

Example

from permify.models.relationship_delete_response import RelationshipDeleteResponse

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

# convert the object into a dict
relationship_delete_response_dict = relationship_delete_response_instance.to_dict()
# create an instance of RelationshipDeleteResponse from a dict
relationship_delete_response_from_dict = RelationshipDeleteResponse.from_dict(relationship_delete_response_dict)

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