/** * Generated by Orval * Do not edit manually. * See `gen:api` script in package.json */ import type { ChangeRequestChangeSchema } from './changeRequestChangeSchema'; import type { ChangeRequestDefaultChangeSchema } from './changeRequestDefaultChangeSchema'; /** * A feature and all its suggested changes. */ export interface ChangeRequestFeatureSchema { /** List of changes inside change request. This list may be empty when listing all change requests for a project. */ changes: ChangeRequestChangeSchema[]; /** A string describing the conflicts related to this change. Only present if there are any concflicts on the feature level. */ conflict?: string; defaultChange?: ChangeRequestDefaultChangeSchema; /** The name of the feature */ name: string; }