| Name |
Type |
Description |
Notes |
| application_id |
str |
ID of the application. |
[optional] |
from instana_client.models.application_event_result import ApplicationEventResult
# TODO update the JSON string below
json = "{}"
# create an instance of ApplicationEventResult from a JSON string
application_event_result_instance = ApplicationEventResult.from_json(json)
# print the JSON string representation of the object
print(ApplicationEventResult.to_json())
# convert the object into a dict
application_event_result_dict = application_event_result_instance.to_dict()
# create an instance of ApplicationEventResult from a dict
application_event_result_from_dict = ApplicationEventResult.from_dict(application_event_result_dict)
[Back to Model list] [Back to API list] [Back to README]