/** * @type AppliedProcessor: The result of a processor execution. * * @property processorName: The name of the processor. * - **Max Length:** 256 * * @property result: The query string that was searched for. * - **Max Length:** 50 * * @property refinements: The refinements that were applied to the query. * */ export type AppliedProcessor = { processorName?: string; result?: string; refinements?: { [key: string]: string; }; } & { [key: string]: any; };