import type { SourceEnum } from './SourceEnum'; /** * Update body: every field optional; at least one must be present. */ export type PatchedPlacementAssessmentUpdate = { name?: string; source?: SourceEnum; agent_unique_id?: string; agent_label?: string; subject?: string; config?: any; enabled?: boolean; };