Skip to content

Latest commit

History

History
30 lines (21 loc) · 921 Bytes

File metadata and controls

30 lines (21 loc) · 921 Bytes

ProcessTree

Properties

NameTypeDescriptionNotes
nodesList[ProcessNode][optional]
sample_seqidint[optional]

Example

fromrevengai.models.process_treeimportProcessTree# TODO update the JSON string belowjson="{}"# create an instance of ProcessTree from a JSON stringprocess_tree_instance=ProcessTree.from_json(json)
# print the JSON string representation of the objectprint(ProcessTree.to_json())
# convert the object into a dictprocess_tree_dict=process_tree_instance.to_dict()
# create an instance of ProcessTree from a dictprocess_tree_from_dict=ProcessTree.from_dict(process_tree_dict)

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