Name |
Type |
Description |
Notes |
name |
str |
|
|
acc_class |
str |
|
|
quantity |
int |
|
[optional] |
description |
str |
|
[optional] |
from epiccore.models.accelerator_config import AcceleratorConfig
# TODO update the JSON string below
json = "{}"
# create an instance of AcceleratorConfig from a JSON string
accelerator_config_instance = AcceleratorConfig.from_json(json)
# print the JSON string representation of the object
print AcceleratorConfig.to_json()
# convert the object into a dict
accelerator_config_dict = accelerator_config_instance.to_dict()
# create an instance of AcceleratorConfig from a dict
accelerator_config_form_dict = accelerator_config.from_dict(accelerator_config_dict)
[Back to Model list] [Back to API list] [Back to README]