1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-06 00:07:44 +01:00
unleash.unleash/frontend/src/openapi/models/adminSegmentSchema.ts
Tymoteusz Czech 77a365e667
chore: Update OpenAPI definitions generated for frontend (#4283)
## About the changes
`frontend> yarn gen:api` after recent updates
2023-07-20 12:59:55 +02:00

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;
}