1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-16 00:06:40 +01:00
unleash.unleash/frontend/src/openapi/models/cloneFeatureSchema.ts

16 lines
465 B
TypeScript
Raw Normal View History

2023-01-05 11:57:53 +01:00
/**
2023-03-15 13:30:07 +01:00
* Generated by Orval
2023-01-05 11:57:53 +01:00
* Do not edit manually.
2023-03-15 13:30:07 +01:00
* See `gen:api` script in package.json
2023-01-05 11:57:53 +01:00
*/
/**
* Copy of a feature with a new name
*/
2023-01-05 11:57:53 +01:00
export interface CloneFeatureSchema {
/** The name of the new feature */
2023-01-05 11:57:53 +01:00
name: string;
/** Whether to use the new feature name as its group ID or not. Group ID is used for calculating [stickiness](https://docs.getunleash.io/reference/stickiness#calculation). Defaults to true. */
2023-01-05 11:57:53 +01:00
replaceGroupId?: boolean;
}