TupleToUserSet defines a mapping from tuple sets to computed user sets.
| Name | Type | Description | Notes |
|---|---|---|---|
| tuple_set | TupleSet | [optional] | |
| computed | ComputedUserSet | [optional] |
frompermify_async.models.tuple_to_user_setimportTupleToUserSet# TODO update the JSON string belowjson="{}"# create an instance of TupleToUserSet from a JSON stringtuple_to_user_set_instance=TupleToUserSet.from_json(json)
# print the JSON string representation of the objectprint(TupleToUserSet.to_json())
# convert the object into a dicttuple_to_user_set_dict=tuple_to_user_set_instance.to_dict()
# create an instance of TupleToUserSet from a dicttuple_to_user_set_from_dict=TupleToUserSet.from_dict(tuple_to_user_set_dict)