Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.66 KB

File metadata and controls

36 lines (27 loc) · 1.66 KB

V0044StepTime

Properties

Name Type Description Notes
elapsed int Elapsed time in seconds [optional]
end V0044Uint64NoValStruct [optional]
start V0044Uint64NoValStruct [optional]
suspended int Total time in suspended state in seconds [optional]
system V0041OpenapiSlurmdbdJobsRespJobsInnerStepsInnerTimeSystem [optional]
limit V0044Uint32NoValStruct [optional]
total V0041OpenapiSlurmdbdJobsRespJobsInnerStepsInnerTimeTotal [optional]
user V0041OpenapiSlurmdbdJobsRespJobsInnerStepsInnerTimeUser [optional]

Example

from slurmrest_python.models.v0044_step_time import V0044StepTime

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

# convert the object into a dict
v0044_step_time_dict = v0044_step_time_instance.to_dict()
# create an instance of V0044StepTime from a dict
v0044_step_time_from_dict = V0044StepTime.from_dict(v0044_step_time_dict)

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