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