/** * 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 { ResourceLink } from './ResourceLink'; /** * * @export * @interface NestedFieldDto */ export interface NestedFieldDto { /** * The links. * @type {{ [key: string]: ResourceLink; }} * @memberof NestedFieldDto */ links: { [key: string]: ResourceLink; }; /** * The ID of the field. * @type {number} * @memberof NestedFieldDto */ fieldId: number; /** * The name of the field. Must be unique within the schema. * @type {string} * @memberof NestedFieldDto */ name: string; /** * Defines if the field is hidden. * @type {boolean} * @memberof NestedFieldDto */ isHidden: boolean; /** * Defines if the field is locked. * @type {boolean} * @memberof NestedFieldDto */ isLocked: boolean; /** * Defines if the field is disabled. * @type {boolean} * @memberof NestedFieldDto */ isDisabled: boolean; /** * * @type {FieldPropertiesDto} * @memberof NestedFieldDto */ properties: FieldPropertiesDto; } /** * Check if a given object implements the NestedFieldDto interface. */ export declare function instanceOfNestedFieldDto(value: any): value is NestedFieldDto; export declare function NestedFieldDtoFromJSON(json: any): NestedFieldDto; export declare function NestedFieldDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): NestedFieldDto; export declare function NestedFieldDtoToJSON(value?: NestedFieldDto | null, _ignoreDiscriminator?: boolean): any;