Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 974 Bytes

File metadata and controls

30 lines (21 loc) · 974 Bytes

V0042JobState

Properties

Name Type Description Notes
current List[str] [optional]
reason str Reason for previous Pending or Failed state [optional]

Example

from slurmrest_python.models.v0042_job_state import V0042JobState

# TODO update the JSON string below
json = "{}"
# create an instance of V0042JobState from a JSON string
v0042_job_state_instance = V0042JobState.from_json(json)
# print the JSON string representation of the object
print(V0042JobState.to_json())

# convert the object into a dict
v0042_job_state_dict = v0042_job_state_instance.to_dict()
# create an instance of V0042JobState from a dict
v0042_job_state_from_dict = V0042JobState.from_dict(v0042_job_state_dict)

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