/** * 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 { ArrayCalculatedDefaultValue } from './ArrayCalculatedDefaultValue'; /** * * @export * @interface ComponentsFieldPropertiesDto */ export interface ComponentsFieldPropertiesDto extends FieldPropertiesDto { /** * The minimum allowed items for the field value. * @type {number} * @memberof ComponentsFieldPropertiesDto */ minItems?: number | null; /** * The maximum allowed items for the field value. * @type {number} * @memberof ComponentsFieldPropertiesDto */ maxItems?: number | null; /** * * @type {ArrayCalculatedDefaultValue} * @memberof ComponentsFieldPropertiesDto */ calculatedDefaultValue?: ArrayCalculatedDefaultValue; /** * The ID of the embedded schemas. * @type {Array} * @memberof ComponentsFieldPropertiesDto */ schemaIds?: Array | null; /** * The fields that must be unique. * @type {Array} * @memberof ComponentsFieldPropertiesDto */ uniqueFields?: Array | null; } /** * Check if a given object implements the ComponentsFieldPropertiesDto interface. */ export declare function instanceOfComponentsFieldPropertiesDto(value: any): value is ComponentsFieldPropertiesDto; export declare function ComponentsFieldPropertiesDtoFromJSON(json: any): ComponentsFieldPropertiesDto; export declare function ComponentsFieldPropertiesDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ComponentsFieldPropertiesDto; export declare function ComponentsFieldPropertiesDtoToJSON(value?: ComponentsFieldPropertiesDto | null, _ignoreDiscriminator?: boolean): any;