mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-04 11:17:02 +02:00
16 lines
347 B
TypeScript
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;
|
|
}
|