mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-13 11:17:26 +02:00
18 lines
429 B
TypeScript
18 lines
429 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* A change request view model, used in the UI to identify change requests in conflict
|
|
*/
|
|
export interface ScheduledChangeRequestViewModelSchema {
|
|
/** The environment of the change request */
|
|
environment: string;
|
|
/** The change request id */
|
|
id: number;
|
|
/** The change request title */
|
|
title?: string;
|
|
}
|