/** * Kinde Management API * Provides endpoints to manage your Kinde Businesses * * The version of the OpenAPI document: 1 * Contact: support@kinde.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface CreateFeatureFlagRequest */ export interface CreateFeatureFlagRequest { /** * The name of the flag. * @type {string} * @memberof CreateFeatureFlagRequest */ name: string; /** * Description of the flag purpose. * @type {string} * @memberof CreateFeatureFlagRequest */ description?: string; /** * The flag identifier to use in code. * @type {string} * @memberof CreateFeatureFlagRequest */ key: string; /** * The variable type. * @type {string} * @memberof CreateFeatureFlagRequest */ type: CreateFeatureFlagRequestTypeEnum; /** * Allow the flag to be overridden at a different level. * @type {string} * @memberof CreateFeatureFlagRequest */ allowOverrideLevel?: CreateFeatureFlagRequestAllowOverrideLevelEnum; /** * Default value for the flag used by environments and organizations. * @type {string} * @memberof CreateFeatureFlagRequest */ defaultValue: string; } /** * @export */ export declare const CreateFeatureFlagRequestTypeEnum: { readonly Str: "str"; readonly Int: "int"; readonly Bool: "bool"; }; export type CreateFeatureFlagRequestTypeEnum = typeof CreateFeatureFlagRequestTypeEnum[keyof typeof CreateFeatureFlagRequestTypeEnum]; /** * @export */ export declare const CreateFeatureFlagRequestAllowOverrideLevelEnum: { readonly Env: "env"; readonly Org: "org"; readonly Usr: "usr"; }; export type CreateFeatureFlagRequestAllowOverrideLevelEnum = typeof CreateFeatureFlagRequestAllowOverrideLevelEnum[keyof typeof CreateFeatureFlagRequestAllowOverrideLevelEnum]; /** * Check if a given object implements the CreateFeatureFlagRequest interface. */ export declare function instanceOfCreateFeatureFlagRequest(value: object): boolean; export declare function CreateFeatureFlagRequestFromJSON(json: any): CreateFeatureFlagRequest; export declare function CreateFeatureFlagRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateFeatureFlagRequest; export declare function CreateFeatureFlagRequestToJSON(value?: CreateFeatureFlagRequest | null): any;