| Name | Type | Description | Notes |
|---|---|---|---|
| args | List[str] | [optional] | |
| attributed | bool | ||
| children | List[ProcessNode] | [optional] | |
| exit_code | int | [optional] | |
| exit_code_str | str | [optional] | |
| exited_at | float | [optional] | |
| killed_by | int | [optional] | |
| name | str | ||
| pid | int | ||
| seqid | int | ||
| started_at | float | [optional] |
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)