| Name | Type | Description | Notes |
|---|---|---|---|
| nodes | List[ProcessNode] | [optional] | |
| sample_seqid | int | [optional] |
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)