Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.05 KB

File metadata and controls

34 lines (25 loc) · 1.05 KB

GPUFields

Properties

Name Type Description Notes
created_at datetime [optional]
example_metadata str [optional]
id int [optional]
name str [optional]
regions List[GPURegionFields] [optional]
updated_at datetime [optional]

Example

from hyperstack.models.gpu_fields import GPUFields

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

# convert the object into a dict
gpu_fields_dict = gpu_fields_instance.to_dict()
# create an instance of GPUFields from a dict
gpu_fields_from_dict = GPUFields.from_dict(gpu_fields_dict)

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