Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

File metadata and controls

29 lines (20 loc) · 1.01 KB

ApplicationEventResult

Properties

Name Type Description Notes
application_id str ID of the application. [optional]

Example

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]