2023-01-05 11:57:53 +01:00
|
|
|
/**
|
2023-03-15 13:30:07 +01:00
|
|
|
* Generated by Orval
|
2023-01-05 11:57:53 +01:00
|
|
|
* Do not edit manually.
|
2023-03-15 13:30:07 +01:00
|
|
|
* See `gen:api` script in package.json
|
2023-01-05 11:57:53 +01:00
|
|
|
*/
|
|
|
|
import type { ChangeRequestStateSchemaState } from './changeRequestStateSchemaState';
|
|
|
|
|
2023-08-03 15:05:20 +02:00
|
|
|
/**
|
|
|
|
* Data used to update the state of a [change request](https://docs.getunleash.io/reference/change-requests).
|
|
|
|
*/
|
2023-01-05 11:57:53 +01:00
|
|
|
export interface ChangeRequestStateSchema {
|
2023-08-03 15:05:20 +02:00
|
|
|
/** The new desired state for the change request */
|
2023-01-05 11:57:53 +01:00
|
|
|
state: ChangeRequestStateSchemaState;
|
2023-08-03 15:05:20 +02:00
|
|
|
/** Any comments accompanying the state changed. Used when sending a draft to review. */
|
2023-04-18 10:42:32 +02:00
|
|
|
comment?: string;
|
2023-01-05 11:57:53 +01:00
|
|
|
}
|