/** * 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 { name: string; sortOrder?: number; constraints?: ConstraintSchema[]; parameters?: ParametersSchema; }