Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

File metadata and controls

29 lines (20 loc) · 1.03 KB

V0044AccountingAllocated

Properties

Name Type Description Notes
seconds int Number of seconds allocated [optional]

Example

from slurmrest_python.models.v0044_accounting_allocated import V0044AccountingAllocated

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

# convert the object into a dict
v0044_accounting_allocated_dict = v0044_accounting_allocated_instance.to_dict()
# create an instance of V0044AccountingAllocated from a dict
v0044_accounting_allocated_from_dict = V0044AccountingAllocated.from_dict(v0044_accounting_allocated_dict)

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