/** * 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'; /** * * @export * @interface RichTextFieldPropertiesDto */ export interface RichTextFieldPropertiesDto extends FieldPropertiesDto { /** * The initial id to the folder when the control supports file uploads. * @type {string} * @memberof RichTextFieldPropertiesDto */ folderId?: string | null; /** * The minimum allowed length for the field value. * @type {number} * @memberof RichTextFieldPropertiesDto */ minLength?: number | null; /** * The maximum allowed length for the field value. * @type {number} * @memberof RichTextFieldPropertiesDto */ maxLength?: number | null; /** * The minimum allowed of normal characters for the field value. * @type {number} * @memberof RichTextFieldPropertiesDto */ minCharacters?: number | null; /** * The maximum allowed of normal characters for the field value. * @type {number} * @memberof RichTextFieldPropertiesDto */ maxCharacters?: number | null; /** * The minimum allowed number of words for the field value. * @type {number} * @memberof RichTextFieldPropertiesDto */ minWords?: number | null; /** * The maximum allowed number of words for the field value. * @type {number} * @memberof RichTextFieldPropertiesDto */ maxWords?: number | null; /** * The class names for the editor. * @type {Array} * @memberof RichTextFieldPropertiesDto */ classNames?: Array | null; /** * The allowed schema ids that can be embedded. * @type {Array} * @memberof RichTextFieldPropertiesDto */ schemaIds?: Array | null; } /** * Check if a given object implements the RichTextFieldPropertiesDto interface. */ export declare function instanceOfRichTextFieldPropertiesDto(value: any): value is RichTextFieldPropertiesDto; export declare function RichTextFieldPropertiesDtoFromJSON(json: any): RichTextFieldPropertiesDto; export declare function RichTextFieldPropertiesDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): RichTextFieldPropertiesDto; export declare function RichTextFieldPropertiesDtoToJSON(value?: RichTextFieldPropertiesDto | null, _ignoreDiscriminator?: boolean): any;