Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 834 Bytes

GPU.md

File metadata and controls

31 lines (22 loc) · 834 Bytes

GPU

Properties

Name Type Description Notes
status bool [optional]
message str [optional]
gpu GPUFields [optional]

Example

from hyperstack.models.gpu import GPU

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

# convert the object into a dict
gpu_dict = gpu_instance.to_dict()
# create an instance of GPU from a dict
gpu_form_dict = gpu.from_dict(gpu_dict)

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