/** * 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 UpsertSchemaNestedFieldDto */ export interface UpsertSchemaNestedFieldDto { /** * The name of the field. Must be unique within the schema. * @type {string} * @memberof UpsertSchemaNestedFieldDto */ name: string; /** * Defines if the field is hidden. * @type {boolean} * @memberof UpsertSchemaNestedFieldDto */ isHidden?: boolean; /** * Defines if the field is locked. * @type {boolean} * @memberof UpsertSchemaNestedFieldDto */ isLocked?: boolean; /** * Defines if the field is disabled. * @type {boolean} * @memberof UpsertSchemaNestedFieldDto */ isDisabled?: boolean; /** * * @type {FieldPropertiesDto} * @memberof UpsertSchemaNestedFieldDto */ properties: FieldPropertiesDto; } /** * Check if a given object implements the UpsertSchemaNestedFieldDto interface. */ export declare function instanceOfUpsertSchemaNestedFieldDto(value: any): value is UpsertSchemaNestedFieldDto; export declare function UpsertSchemaNestedFieldDtoFromJSON(json: any): UpsertSchemaNestedFieldDto; export declare function UpsertSchemaNestedFieldDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): UpsertSchemaNestedFieldDto; export declare function UpsertSchemaNestedFieldDtoToJSON(value?: UpsertSchemaNestedFieldDto | null, _ignoreDiscriminator?: boolean): any;