1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/frontend/src/openapi/models/changeRequestChangeSchema.ts
2023-12-04 21:49:49 +02:00

26 lines
969 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
import type { ChangeRequestChangeSchemaCreatedBy } from './changeRequestChangeSchemaCreatedBy';
import type { ChangeRequestChangeSchemaPayload } from './changeRequestChangeSchemaPayload';
/**
* A change request change, containing info about the type of change and the specific changes.
*/
export interface ChangeRequestChangeSchema {
/** The kind of action that the change contains information about. */
action: string;
/** A description of the conflict caused by this change. Only present if there are any conflicts. */
conflict?: string;
/** When this change was suggested */
createdAt?: string;
/** The user who created this change. */
createdBy?: ChangeRequestChangeSchemaCreatedBy;
/** The ID of this change. */
id: number;
/** The data required to perform this action. */
payload: ChangeRequestChangeSchemaPayload;
}