Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

ServiceEventResult

Properties

Name Type Description Notes
application_id str ID of the application this service is in scope of. [optional]
service_id str ID of the service. [optional]

Example

from instana_client.models.service_event_result import ServiceEventResult

# TODO update the JSON string below
json = "{}"
# create an instance of ServiceEventResult from a JSON string
service_event_result_instance = ServiceEventResult.from_json(json)
# print the JSON string representation of the object
print(ServiceEventResult.to_json())

# convert the object into a dict
service_event_result_dict = service_event_result_instance.to_dict()
# create an instance of ServiceEventResult from a dict
service_event_result_from_dict = ServiceEventResult.from_dict(service_event_result_dict)

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