/** * @type ExecutionRequest: The document representing the execution Request for categorization. * * @property evaluation: A flag indicating whether only an evaluation job needs to be performed. * */ export type ExecutionRequest = { evaluation: boolean; } & { [key: string]: any; };