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/updateFeatureStrategySegmentsSchema.ts
2023-12-04 21:49:49 +02:00

20 lines
614 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* Data required to update segments for a strategy.
*/
export interface UpdateFeatureStrategySegmentsSchema {
/** The ID of the strategy environment. */
environmentId: string;
/** The ID of the project that the strategy belongs to. */
projectId: string;
/** The new list of segments (IDs) to use for this strategy. Any segments not in this list will be removed from the strategy. */
segmentIds: number[];
/** The ID of the strategy to update segments for. */
strategyId: string;
}