1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-07 01:16:28 +02:00
unleash.unleash/frontend/src/openapi/models/segmentStrategiesSchemaStrategiesItem.ts
2023-12-22 12:10:50 +02:00

19 lines
547 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
export type SegmentStrategiesSchemaStrategiesItem = {
/** The ID of the environment that the strategy belongs to. */
environment: string;
/** The name of the feature flag that this strategy belongs to. */
featureName: string;
/** The ID of the strategy */
id: string;
/** The ID of the project that the strategy belongs to. */
projectId: string;
/** The name of the strategy's type. */
strategyName: string;
};