/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * 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 FeatureDto */ export interface FeatureDto { /** * The name of the feature. * @type {string} * @memberof FeatureDto */ name: string; /** * The description text. * @type {string} * @memberof FeatureDto */ text: string; } /** * Check if a given object implements the FeatureDto interface. */ export declare function instanceOfFeatureDto(value: any): value is FeatureDto; export declare function FeatureDtoFromJSON(json: any): FeatureDto; export declare function FeatureDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): FeatureDto; export declare function FeatureDtoToJSON(value?: FeatureDto | null, _ignoreDiscriminator?: boolean): any;