Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.2 KB

File metadata and controls

32 lines (23 loc) · 1.2 KB

V0044StepTresRequested

Properties

Name Type Description Notes
max List[V0044Tres] [optional]
min List[V0044Tres] [optional]
average List[V0044Tres] [optional]
total List[V0044Tres] [optional]

Example

from slurmrest_python.models.v0044_step_tres_requested import V0044StepTresRequested

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

# convert the object into a dict
v0044_step_tres_requested_dict = v0044_step_tres_requested_instance.to_dict()
# create an instance of V0044StepTresRequested from a dict
v0044_step_tres_requested_from_dict = V0044StepTresRequested.from_dict(v0044_step_tres_requested_dict)

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