// Copyright © 2022-2026 Partium, Inc. DBA Partium export declare enum SEARCH_SESSION_LOG_OBJECT_TYPE { QUESTION = "question", CODE = "code",// TODO remove when Schadcodes are handled in a generic way FEEDBACK = "feedback" } /** * Object that is used for logging information to the search-session that does not directly * affect the search-results. It's purpose is to allow us to interpret previous search-sessions, * in order to retrain the system. An example for this is user-feedback to searches. */ export declare class SearchSessionLogObject { type: string; options: object; constructor(init?: Partial); }