This type defines the structure of the request body used when updating an existing AI Execution Context. It is a partial representation of the AiExecutionContext interface, allowing for partial updates.
import { AiExecutionContext } from './ai-execution-context';

export type UpdateExecutionContextRequest = Partial<AiExecutionContext>;

Properties

All properties are optional, as this is a partial update. Refer to AiExecutionContext for property details.