| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | The app id | [optional] |
from cyperf.models.app_id import AppId
# TODO update the JSON string below
json = "{}"
# create an instance of AppId from a JSON string
app_id_instance = AppId.from_json(json)
# print the JSON string representation of the object
print(AppId.to_json())
# convert the object into a dict
app_id_dict = app_id_instance.to_dict()
# create an instance of AppId from a dict
app_id_from_dict = AppId.from_dict(app_id_dict)