ComputedUserSet defines a set of computed users which includes the relation name.
Name | Type | Description | Notes |
---|---|---|---|
relation | str | [optional] |
from permify.models.computed_user_set import ComputedUserSet
# TODO update the JSON string below
json = "{}"
# create an instance of ComputedUserSet from a JSON string
computed_user_set_instance = ComputedUserSet.from_json(json)
# print the JSON string representation of the object
print(ComputedUserSet.to_json())
# convert the object into a dict
computed_user_set_dict = computed_user_set_instance.to_dict()
# create an instance of ComputedUserSet from a dict
computed_user_set_from_dict = ComputedUserSet.from_dict(computed_user_set_dict)