def __init__()

in share/config.py [0:0]


    def __init__(self, input_type: str, input_id: str):
        self.id = input_id
        self.type = input_type

        self._tags: list[str] = []
        self._json_content_type: str = ""
        self._expand_event_list_from_field: str = ""
        self._root_fields_to_add_to_expanded_event: Optional[Union[str, list[str]]] = None
        self._outputs: dict[str, Output] = {}

        self._multiline_processor: Optional[ProtocolMultiline] = None
        self._include_exclude_filter: Optional[IncludeExcludeFilter] = None

        self._valid_json_content_type: list[str] = ["ndjson", "single", "disabled"]