1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/frontend/src/openapi/models/updateStrategySchema.ts
Tymoteusz Czech 77a365e667
chore: Update OpenAPI definitions generated for frontend (#4283)
## About the changes
`frontend> yarn gen:api` after recent updates
2023-07-20 12:59:55 +02:00

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[];
}