Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 828 Bytes

File metadata and controls

29 lines (20 loc) · 828 Bytes

ConfigId

Properties

Name Type Description Notes
id str The ID of the configuration [optional]

Example

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)

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