| Name | Type | Description | Notes |
|---|---|---|---|
| comment | V0041OpenapiSlurmdbdJobsRespJobsInnerComment | [optional] | |
| derived_exit_code | V0044ProcessExitCodeVerbose | [optional] | |
| extra | str | Arbitrary string used for node filtering if extra constraints are enabled | [optional] |
| tres | V0044JobModifyTres | [optional] | |
| wckey | str | Workload characterization key | [optional] |
from slurmrest_python.models.v0044_job_modify import V0044JobModify
# TODO update the JSON string below
json = "{}"
# create an instance of V0044JobModify from a JSON string
v0044_job_modify_instance = V0044JobModify.from_json(json)
# print the JSON string representation of the object
print(V0044JobModify.to_json())
# convert the object into a dict
v0044_job_modify_dict = v0044_job_modify_instance.to_dict()
# create an instance of V0044JobModify from a dict
v0044_job_modify_from_dict = V0044JobModify.from_dict(v0044_job_modify_dict)