| Name | Type | Description | Notes |
|---|---|---|---|
| gpu_list | List[GPUFields] | [optional] | |
| message | str | [optional] | |
| status | bool | [optional] |
from hyperstack.models.gpu_list import GPUList
# TODO update the JSON string below
json = "{}"
# create an instance of GPUList from a JSON string
gpu_list_instance = GPUList.from_json(json)
# print the JSON string representation of the object
print(GPUList.to_json())
# convert the object into a dict
gpu_list_dict = gpu_list_instance.to_dict()
# create an instance of GPUList from a dict
gpu_list_from_dict = GPUList.from_dict(gpu_list_dict)