Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 772 Bytes

File metadata and controls

29 lines (20 loc) · 772 Bytes

AppId

Properties

Name Type Description Notes
id str The app id [optional]

Example

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)

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