1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-15 01:16:22 +02:00
unleash.unleash/frontend/src/openapi/models/createFeatureSchema.ts
2024-05-23 13:37:56 +03:00

23 lines
659 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* Data used to create a new feature flag.
*/
export interface CreateFeatureSchema {
/**
* Detailed description of the feature
* @nullable
*/
description?: string | null;
/** `true` if the impression data collection is enabled for the feature, otherwise `false`. */
impressionData?: boolean;
/** Unique feature name */
name: string;
/** The feature flag's [type](https://docs.getunleash.io/reference/feature-toggle-types). One of experiment, kill-switch, release, operational, or permission */
type?: string;
}