Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.32 KB

File metadata and controls

33 lines (24 loc) · 1.32 KB

V0044Accounting

Properties

Name Type Description Notes
allocated V0044AccountingAllocated [optional]
id int Association ID or Workload characterization key ID [optional]
id_alt int Alternate ID (not currently used) [optional]
start int When the record was started (UNIX timestamp) (UNIX timestamp or time string recognized by Slurm (e.g., '[MM/DD[/YY]-]HH:MM[:SS]')) [optional]
tres V0044Tres [optional]

Example

from slurmrest_python.models.v0044_accounting import V0044Accounting

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

# convert the object into a dict
v0044_accounting_dict = v0044_accounting_instance.to_dict()
# create an instance of V0044Accounting from a dict
v0044_accounting_from_dict = V0044Accounting.from_dict(v0044_accounting_dict)

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