Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.05 KB

File metadata and controls

31 lines (22 loc) · 1.05 KB

TupleToUserSet

TupleToUserSet defines a mapping from tuple sets to computed user sets.

Properties

NameTypeDescriptionNotes
tuple_setTupleSet[optional]
computedComputedUserSet[optional]

Example

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)

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