/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { PlatformApplicationPlacementUpdateStatusEnum } from './PlatformApplicationPlacementUpdateStatusEnum'; /** * Body for advancing a placement: status, the agent's result, an admin * override, or a note. All optional; at least one must be present. */ export type PatchedPlatformApplicationPlacementUpdate = { status?: PlatformApplicationPlacementUpdateStatusEnum; result?: any; override?: any; session_id?: string; note?: string; };