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

V0043StepTime

Properties

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

Example

from slurmrest_python.models.v0043_step_time import V0043StepTime

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

# convert the object into a dict
v0043_step_time_dict = v0043_step_time_instance.to_dict()
# create an instance of V0043StepTime from a dict
v0043_step_time_from_dict = V0043StepTime.from_dict(v0043_step_time_dict)

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