/** * 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 ArrayFieldPropertiesDto */ export interface ArrayFieldPropertiesDto extends FieldPropertiesDto { /** * The minimum allowed items for the field value. * @type {number} * @memberof ArrayFieldPropertiesDto */ minItems?: number | null; /** * The maximum allowed items for the field value. * @type {number} * @memberof ArrayFieldPropertiesDto */ maxItems?: number | null; /** * * @type {ArrayCalculatedDefaultValue} * @memberof ArrayFieldPropertiesDto */ calculatedDefaultValue?: ArrayCalculatedDefaultValue; /** * The fields that must be unique. * @type {Array} * @memberof ArrayFieldPropertiesDto */ uniqueFields?: Array | null; } /** * Check if a given object implements the ArrayFieldPropertiesDto interface. */ export declare function instanceOfArrayFieldPropertiesDto(value: any): value is ArrayFieldPropertiesDto; export declare function ArrayFieldPropertiesDtoFromJSON(json: any): ArrayFieldPropertiesDto; export declare function ArrayFieldPropertiesDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ArrayFieldPropertiesDto; export declare function ArrayFieldPropertiesDtoToJSON(value?: ArrayFieldPropertiesDto | null, _ignoreDiscriminator?: boolean): any;