| Name | Type | Description | Notes |
|---|---|---|---|
| binary_path | str | [optional] | |
| display_name | str | [optional] | |
| events | List[ReportEvent] | [optional] | |
| name | str | [optional] | |
| service_type | str | [optional] | |
| start_type | str | [optional] |
fromrevengai.models.service_entryimportServiceEntry# TODO update the JSON string belowjson="{}"# create an instance of ServiceEntry from a JSON stringservice_entry_instance=ServiceEntry.from_json(json)
# print the JSON string representation of the objectprint(ServiceEntry.to_json())
# convert the object into a dictservice_entry_dict=service_entry_instance.to_dict()
# create an instance of ServiceEntry from a dictservice_entry_from_dict=ServiceEntry.from_dict(service_entry_dict)