| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | The ID of the configuration | [optional] |
from cyperf.models.config_id import ConfigId
# TODO update the JSON string below
json = "{}"
# create an instance of ConfigId from a JSON string
config_id_instance = ConfigId.from_json(json)
# print the JSON string representation of the object
print(ConfigId.to_json())
# convert the object into a dict
config_id_dict = config_id_instance.to_dict()
# create an instance of ConfigId from a dict
config_id_from_dict = ConfigId.from_dict(config_id_dict)