Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.23 KB

File metadata and controls

30 lines (21 loc) · 1.23 KB

V0044InstanceTime

Properties

Name Type Description Notes
time_end int When the instance will end (UNIX timestamp) (UNIX timestamp or time string recognized by Slurm (e.g., '[MM/DD[/YY]-]HH:MM[:SS]')) [optional]
time_start int When the instance will start (UNIX timestamp) (UNIX timestamp or time string recognized by Slurm (e.g., '[MM/DD[/YY]-]HH:MM[:SS]')) [optional]

Example

from slurmrest_python.models.v0044_instance_time import V0044InstanceTime

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

# convert the object into a dict
v0044_instance_time_dict = v0044_instance_time_instance.to_dict()
# create an instance of V0044InstanceTime from a dict
v0044_instance_time_from_dict = V0044InstanceTime.from_dict(v0044_instance_time_dict)

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