/** * Generated by Orval * Do not edit manually. * See `gen:api` script in package.json */ import type { ConstraintSchema } from './constraintSchema'; import type { ParametersSchema } from './parametersSchema'; export interface CreateFeatureStrategySchema { /** The name or type of strategy */ name: string; /** A descriptive title for the strategy */ title?: string | null; /** A toggle to disable the strategy. defaults to false. Disabled strategies are not evaluated or returned to the SDKs */ disabled?: boolean | null; /** The order of the strategy in the list */ sortOrder?: number; /** A list of the constraints attached to the strategy */ constraints?: ConstraintSchema[]; /** An object containing the parameters for the strategy */ parameters?: ParametersSchema; /** Ids of segments to use for this strategy */ segments?: number[]; }