Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.38 KB

RelationshipReadRequestMetadata.md

File metadata and controls

30 lines (21 loc) · 1.38 KB

RelationshipReadRequestMetadata

RelationshipReadRequestMetadata defines the structure of the metadata for a read request focused on relationships. It includes the snap_token associated with a particular state of the database.

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_read_request_metadata import RelationshipReadRequestMetadata

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

# convert the object into a dict
relationship_read_request_metadata_dict = relationship_read_request_metadata_instance.to_dict()
# create an instance of RelationshipReadRequestMetadata from a dict
relationship_read_request_metadata_from_dict = RelationshipReadRequestMetadata.from_dict(relationship_read_request_metadata_dict)

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