Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 904 Bytes

File metadata and controls

31 lines (22 loc) · 904 Bytes

GPUList

Properties

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

Example

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)

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