Skip to content

Latest commit

History

History
30 lines (21 loc) · 887 Bytes

File metadata and controls

30 lines (21 loc) · 887 Bytes

TupleSet

TupleSet represents a set of tuples associated with a specific relation.

Properties

NameTypeDescriptionNotes
relationstr[optional]

Example

frompermify_async.models.tuple_setimportTupleSet# TODO update the JSON string belowjson="{}"# create an instance of TupleSet from a JSON stringtuple_set_instance=TupleSet.from_json(json)
# print the JSON string representation of the objectprint(TupleSet.to_json())
# convert the object into a dicttuple_set_dict=tuple_set_instance.to_dict()
# create an instance of TupleSet from a dicttuple_set_from_dict=TupleSet.from_dict(tuple_set_dict)

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