The RelationReference message provides a reference to a specific relation.
from permify.models.relation_reference import RelationReference
# TODO update the JSON string below
json = "{}"
# create an instance of RelationReference from a JSON string
relation_reference_instance = RelationReference.from_json(json)
# print the JSON string representation of the object
print RelationReference.to_json()
# convert the object into a dict
relation_reference_dict = relation_reference_instance.to_dict()
# create an instance of RelationReference from a dict
relation_reference_form_dict = relation_reference.from_dict(relation_reference_dict)