| Name | Type | Description | Notes |
|---|---|---|---|
| requested | V0043StepTresRequested | [optional] | |
| consumed | V0043StepTresConsumed | [optional] | |
| allocated | List[V0043Tres] | [optional] |
from slurmrest_python.models.v0043_step_tres import V0043StepTres
# TODO update the JSON string below
json = "{}"
# create an instance of V0043StepTres from a JSON string
v0043_step_tres_instance = V0043StepTres.from_json(json)
# print the JSON string representation of the object
print(V0043StepTres.to_json())
# convert the object into a dict
v0043_step_tres_dict = v0043_step_tres_instance.to_dict()
# create an instance of V0043StepTres from a dict
v0043_step_tres_from_dict = V0043StepTres.from_dict(v0043_step_tres_dict)