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
id int [optional]
name str [optional]
regions List[GPURegionFields] [optional]
example_metadata str [optional]
created_at datetime [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_form_dict = gpu_fields.from_dict(gpu_fields_dict)

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