/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type DealMoveStageRequest = { /** * Id of the destination PipelineStage. One of `stage_id` or `stage_code` is required. */ stage_id?: number; /** * Stable `code` of the destination PipelineStage within this Deal's Pipeline. Use this when integrating across environments where ids differ but codes are stable. */ stage_code?: string; };