/** * 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. */ /** * * @export * @interface ConfigureUIFieldsDto */ export interface ConfigureUIFieldsDto { /** * The name of fields that are used in content lists. * @type {Array} * @memberof ConfigureUIFieldsDto */ fieldsInLists?: Array | null; /** * The name of fields that are used in content references. * @type {Array} * @memberof ConfigureUIFieldsDto */ fieldsInReferences?: Array | null; } /** * Check if a given object implements the ConfigureUIFieldsDto interface. */ export declare function instanceOfConfigureUIFieldsDto(value: any): value is ConfigureUIFieldsDto; export declare function ConfigureUIFieldsDtoFromJSON(json: any): ConfigureUIFieldsDto; export declare function ConfigureUIFieldsDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ConfigureUIFieldsDto; export declare function ConfigureUIFieldsDtoToJSON(value?: ConfigureUIFieldsDto | null, _ignoreDiscriminator?: boolean): any;