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