Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 886 Bytes

File metadata and controls

30 lines (21 loc) · 886 Bytes

ProcessTree

Properties

Name Type Description Notes
success bool
data List[Process]

Example

from revengai.models.process_tree import ProcessTree

# TODO update the JSON string below
json = "{}"
# create an instance of ProcessTree from a JSON string
process_tree_instance = ProcessTree.from_json(json)
# print the JSON string representation of the object
print(ProcessTree.to_json())

# convert the object into a dict
process_tree_dict = process_tree_instance.to_dict()
# create an instance of ProcessTree from a dict
process_tree_from_dict = ProcessTree.from_dict(process_tree_dict)

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