1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-04 11:17:02 +02:00
unleash.unleash/frontend/src/openapi/models/changeRequestSegmentChangeSchema.ts
Gastón Fournier abe160eb7d
feat: Unleash v7 ESM migration (#9877)
We're migrating to ESM, which will allow us to import the latest
versions of our dependencies.

Co-Authored-By: Christopher Kolstad <chriswk@getunleash.io>
2025-05-14 09:47:12 +02:00

28 lines
1.1 KiB
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
import type { ChangeRequestSegmentChangeSchemaCreatedBy } from './changeRequestSegmentChangeSchemaCreatedBy.js';
import type { ChangeRequestSegmentChangeSchemaPayload } from './changeRequestSegmentChangeSchemaPayload.js';
/**
* A change request segment change, containing info about the type of segment change and the specific changes.
*/
export interface ChangeRequestSegmentChangeSchema {
/** 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?: ChangeRequestSegmentChangeSchemaCreatedBy;
/** The ID of this change. */
id: number;
/** The current name of the segment */
name: string;
/** The data required to perform this action. */
payload: ChangeRequestSegmentChangeSchemaPayload;
}