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
* /
export interface CreateFeatureSchema {
2023-07-20 12:59:55 +02:00
/** Unique feature name */
2023-01-05 11:57:53 +01:00
name : string ;
2023-07-20 12:59:55 +02:00
/** The feature toggle's [type](https://docs.getunleash.io/reference/feature-toggle-types). One of experiment, kill-switch, release, operational, or permission */
2023-01-05 11:57:53 +01:00
type ? : string ;
2023-07-20 12:59:55 +02:00
/** Detailed description of the feature */
description? : string | null ;
/** `true` if the impression data collection is enabled for the feature, otherwise `false`. */
2023-01-05 11:57:53 +01:00
impressionData? : boolean ;
}