Skip to content

Latest commit

History

History
39 lines (30 loc) · 1.21 KB

File metadata and controls

39 lines (30 loc) · 1.21 KB

ProcessNode

Properties

NameTypeDescriptionNotes
argsList[str][optional]
attributedbool
childrenList[ProcessNode][optional]
exit_codeint[optional]
exit_code_strstr[optional]
exited_atfloat[optional]
killed_byint[optional]
namestr
pidint
seqidint
started_atfloat[optional]

Example

fromrevengai.models.process_nodeimportProcessNode# TODO update the JSON string belowjson="{}"# create an instance of ProcessNode from a JSON stringprocess_node_instance=ProcessNode.from_json(json)
# print the JSON string representation of the objectprint(ProcessNode.to_json())
# convert the object into a dictprocess_node_dict=process_node_instance.to_dict()
# create an instance of ProcessNode from a dictprocess_node_from_dict=ProcessNode.from_dict(process_node_dict)

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