/** * 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 AddFieldDto */ export interface AddFieldDto { /** * The name of the field. Must be unique within the schema. * @type {string} * @memberof AddFieldDto */ name: string; /** * Determines the optional partitioning of the field. * @type {string} * @memberof AddFieldDto */ partitioning?: string | null; /** * * @type {FieldPropertiesDto} * @memberof AddFieldDto */ properties: FieldPropertiesDto; } /** * Check if a given object implements the AddFieldDto interface. */ export declare function instanceOfAddFieldDto(value: any): value is AddFieldDto; export declare function AddFieldDtoFromJSON(json: any): AddFieldDto; export declare function AddFieldDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): AddFieldDto; export declare function AddFieldDtoToJSON(value?: AddFieldDto | null, _ignoreDiscriminator?: boolean): any;