| Name | Type | Description | Notes |
|---|---|---|---|
| node_conf | str | Node configuration line | |
| meta | V0044OpenapiMeta | [optional] | |
| errors | List[V0044OpenapiError] | [optional] | |
| warnings | List[V0044OpenapiWarning] | [optional] |
from slurmrest_python.models.v0044_openapi_create_node_req import V0044OpenapiCreateNodeReq
# TODO update the JSON string below
json = "{}"
# create an instance of V0044OpenapiCreateNodeReq from a JSON string
v0044_openapi_create_node_req_instance = V0044OpenapiCreateNodeReq.from_json(json)
# print the JSON string representation of the object
print(V0044OpenapiCreateNodeReq.to_json())
# convert the object into a dict
v0044_openapi_create_node_req_dict = v0044_openapi_create_node_req_instance.to_dict()
# create an instance of V0044OpenapiCreateNodeReq from a dict
v0044_openapi_create_node_req_from_dict = V0044OpenapiCreateNodeReq.from_dict(v0044_openapi_create_node_req_dict)