Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

V0040StepTimeUser

Properties

Name Type Description Notes
seconds int User CPU time used by the step in seconds [optional]
microseconds int User CPU time used by the step in microseconds [optional]

Example

from slurm_api_client.models.v0040_step_time_user import V0040StepTimeUser

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

# convert the object into a dict
v0040_step_time_user_dict = v0040_step_time_user_instance.to_dict()
# create an instance of V0040StepTimeUser from a dict
v0040_step_time_user_from_dict = V0040StepTimeUser.from_dict(v0040_step_time_user_dict)

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