| Name |
Type |
Description |
Notes |
| datetime |
str |
|
[optional] |
| value |
int |
|
[optional] |
from hyperstack.models.allocated_gpu_count_graph import AllocatedGPUCountGraph
# TODO update the JSON string below
json = "{}"
# create an instance of AllocatedGPUCountGraph from a JSON string
allocated_gpu_count_graph_instance = AllocatedGPUCountGraph.from_json(json)
# print the JSON string representation of the object
print(AllocatedGPUCountGraph.to_json())
# convert the object into a dict
allocated_gpu_count_graph_dict = allocated_gpu_count_graph_instance.to_dict()
# create an instance of AllocatedGPUCountGraph from a dict
allocated_gpu_count_graph_from_dict = AllocatedGPUCountGraph.from_dict(allocated_gpu_count_graph_dict)
[Back to Model list] [Back to API list] [Back to README]