/** * 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. */ import type { FieldPropertiesDto } from './FieldPropertiesDto'; import type { BooleanFieldEditor } from './BooleanFieldEditor'; /** * * @export * @interface BooleanFieldPropertiesDto */ export interface BooleanFieldPropertiesDto extends FieldPropertiesDto { /** * * @type {{ [key: string]: boolean | null; }} * @memberof BooleanFieldPropertiesDto */ defaultValues?: { [key: string]: boolean | null; }; /** * The default value for the field value. * @type {boolean} * @memberof BooleanFieldPropertiesDto */ defaultValue?: boolean | null; /** * Indicates that the inline editor is enabled for this field. * @type {boolean} * @memberof BooleanFieldPropertiesDto */ inlineEditable?: boolean; /** * * @type {BooleanFieldEditor} * @memberof BooleanFieldPropertiesDto */ editor?: BooleanFieldEditor; } /** * Check if a given object implements the BooleanFieldPropertiesDto interface. */ export declare function instanceOfBooleanFieldPropertiesDto(value: any): value is BooleanFieldPropertiesDto; export declare function BooleanFieldPropertiesDtoFromJSON(json: any): BooleanFieldPropertiesDto; export declare function BooleanFieldPropertiesDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): BooleanFieldPropertiesDto; export declare function BooleanFieldPropertiesDtoToJSON(value?: BooleanFieldPropertiesDto | null, _ignoreDiscriminator?: boolean): any;