1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-04 11:17:02 +02:00
unleash.unleash/frontend/src/openapi/models/featureStrategySegmentSchema.ts
2023-12-04 21:49:49 +02:00

16 lines
347 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* An object containing a segment identifier and a strategy identifier.
*/
export interface FeatureStrategySegmentSchema {
/** The ID of the strategy */
featureStrategyId: string;
/** The ID of the segment */
segmentId: number;
}