Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

File metadata and controls

31 lines (22 loc) · 1.06 KB

HardwarePresetResponse

Properties

Name Type Description Notes
gpu_type str
accelerator_memory int [optional]
is_mig bool

Example

from platform_api_python_client.models.hardware_preset_response import HardwarePresetResponse

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

# convert the object into a dict
hardware_preset_response_dict = hardware_preset_response_instance.to_dict()
# create an instance of HardwarePresetResponse from a dict
hardware_preset_response_from_dict = HardwarePresetResponse.from_dict(hardware_preset_response_dict)

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