mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-07 01:16:28 +02:00
21 lines
567 B
TypeScript
21 lines
567 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { ConstraintSchema } from './constraintSchema';
|
|
|
|
/**
|
|
* Data used to create or update a segment
|
|
*/
|
|
export interface UpsertSegmentSchema {
|
|
/** The list of constraints that make up this segment */
|
|
constraints: ConstraintSchema[];
|
|
/** A description of what the segment is for */
|
|
description?: string | null;
|
|
/** The name of the segment */
|
|
name: string;
|
|
/** The project the segment belongs to if any. */
|
|
project?: string | null;
|
|
}
|