mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-12 13:48:35 +02:00
17 lines
576 B
TypeScript
17 lines
576 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { UpdateStrategySchemaParametersItem } from './updateStrategySchemaParametersItem';
|
|
|
|
/**
|
|
* The data required to update a strategy type.
|
|
*/
|
|
export interface UpdateStrategySchema {
|
|
/** A description of the strategy type. */
|
|
description?: string;
|
|
/** The parameter list lets you pass arguments to your custom activation strategy. These will be made available to your custom strategy implementation. */
|
|
parameters: UpdateStrategySchemaParametersItem[];
|
|
}
|