/** * 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 { UpsertSchemaNestedFieldDto } from './UpsertSchemaNestedFieldDto'; /** * * @export * @interface UpsertSchemaFieldDto */ export interface UpsertSchemaFieldDto { /** * The name of the field. Must be unique within the schema. * @type {string} * @memberof UpsertSchemaFieldDto */ name: string; /** * Defines if the field is hidden. * @type {boolean} * @memberof UpsertSchemaFieldDto */ isHidden?: boolean; /** * Defines if the field is locked. * @type {boolean} * @memberof UpsertSchemaFieldDto */ isLocked?: boolean; /** * Defines if the field is disabled. * @type {boolean} * @memberof UpsertSchemaFieldDto */ isDisabled?: boolean; /** * Determines the optional partitioning of the field. * @type {string} * @memberof UpsertSchemaFieldDto */ partitioning?: string | null; /** * * @type {FieldPropertiesDto} * @memberof UpsertSchemaFieldDto */ properties: FieldPropertiesDto; /** * The nested fields. * @type {Array} * @memberof UpsertSchemaFieldDto */ nested?: Array | null; } /** * Check if a given object implements the UpsertSchemaFieldDto interface. */ export declare function instanceOfUpsertSchemaFieldDto(value: any): value is UpsertSchemaFieldDto; export declare function UpsertSchemaFieldDtoFromJSON(json: any): UpsertSchemaFieldDto; export declare function UpsertSchemaFieldDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): UpsertSchemaFieldDto; export declare function UpsertSchemaFieldDtoToJSON(value?: UpsertSchemaFieldDto | null, _ignoreDiscriminator?: boolean): any;