Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 973 Bytes

File metadata and controls

30 lines (21 loc) · 973 Bytes

V0043JobTres

Properties

Name Type Description Notes
allocated List[V0043Tres] [optional]
requested List[V0043Tres] [optional]

Example

from slurmrest_python.models.v0043_job_tres import V0043JobTres

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

# convert the object into a dict
v0043_job_tres_dict = v0043_job_tres_instance.to_dict()
# create an instance of V0043JobTres from a dict
v0043_job_tres_from_dict = V0043JobTres.from_dict(v0043_job_tres_dict)

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