| Name | Type | Description | Notes |
|---|---|---|---|
| index | int | Node index | |
| name | str | Node name | |
| cpus | V0041OpenapiJobInfoRespJobsInnerJobResourcesNodesAllocationInnerCpus | [optional] | |
| memory | V0041OpenapiJobInfoRespJobsInnerJobResourcesNodesAllocationInnerMemory | [optional] | |
| sockets | List[V0044JobResSocket] |
from slurmrest_python.models.v0044_job_res_node import V0044JobResNode
# TODO update the JSON string below
json = "{}"
# create an instance of V0044JobResNode from a JSON string
v0044_job_res_node_instance = V0044JobResNode.from_json(json)
# print the JSON string representation of the object
print(V0044JobResNode.to_json())
# convert the object into a dict
v0044_job_res_node_dict = v0044_job_res_node_instance.to_dict()
# create an instance of V0044JobResNode from a dict
v0044_job_res_node_from_dict = V0044JobResNode.from_dict(v0044_job_res_node_dict)