Name | Type | Description | Notes |
---|---|---|---|
status | bool | [optional] | |
message | str | [optional] | |
gpu | GPUFields | [optional] |
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)