Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 939 Bytes

GPURegionFields.md

File metadata and controls

30 lines (21 loc) · 939 Bytes

GPURegionFields

Properties

Name Type Description Notes
id int [optional]
name str [optional]

Example

from hyperstack.models.gpu_region_fields import GPURegionFields

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

# convert the object into a dict
gpu_region_fields_dict = gpu_region_fields_instance.to_dict()
# create an instance of GPURegionFields from a dict
gpu_region_fields_form_dict = gpu_region_fields.from_dict(gpu_region_fields_dict)

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