Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

File metadata and controls

32 lines (23 loc) · 1.19 KB

V0042StepTresConsumed

Properties

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

Example

from slurmrest_python.models.v0042_step_tres_consumed import V0042StepTresConsumed

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

# convert the object into a dict
v0042_step_tres_consumed_dict = v0042_step_tres_consumed_instance.to_dict()
# create an instance of V0042StepTresConsumed from a dict
v0042_step_tres_consumed_from_dict = V0042StepTresConsumed.from_dict(v0042_step_tres_consumed_dict)

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