mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-12 13:48:35 +02:00
27 lines
822 B
TypeScript
27 lines
822 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { ConstraintSchema } from './constraintSchema';
|
|
|
|
export interface AdminSegmentSchema {
|
|
/** The ID of this segment */
|
|
id: number;
|
|
/** The name of this segment */
|
|
name: string;
|
|
/** The description for this segment */
|
|
description?: string | null;
|
|
/** The list of constraints that are used in this segment */
|
|
constraints: ConstraintSchema[];
|
|
/** The number of projects that use this segment */
|
|
usedInFeatures?: number | null;
|
|
/** The number of projects that use this segment */
|
|
usedInProjects?: number | null;
|
|
project?: string | null;
|
|
/** The creator's email or username */
|
|
createdBy?: string;
|
|
/** When the segment was created */
|
|
createdAt: string;
|
|
}
|