/** * Generated by Orval * Do not edit manually. * See `gen:api` script in package.json */ import type { ChangeRequestStateSchemaState } from './changeRequestStateSchemaState'; /** * Data used to update the state of a [change request](https://docs.getunleash.io/reference/change-requests). */ export interface ChangeRequestStateSchema { /** The new desired state for the change request */ state: ChangeRequestStateSchemaState; /** Any comments accompanying the state changed. Used when sending a draft to review. */ comment?: string; }