Skip to content

Latest commit

History

History
34 lines (25 loc) · 1.07 KB

File metadata and controls

34 lines (25 loc) · 1.07 KB

ServiceEntry

Properties

NameTypeDescriptionNotes
binary_pathstr[optional]
display_namestr[optional]
eventsList[ReportEvent][optional]
namestr[optional]
service_typestr[optional]
start_typestr[optional]

Example

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)

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