/** * 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 ImportContentsDto */ export interface ImportContentsDto { /** * The data to import. * @type {Array<{ [key: string]: { [key: string]: any; }; }>} * @memberof ImportContentsDto */ datas: Array<{ [key: string]: { [key: string]: any; }; }>; /** * True to automatically publish the content. * @type {boolean} * @memberof ImportContentsDto * @deprecated */ publish?: boolean; /** * True to turn off scripting for faster inserts. Default: true. * @type {boolean} * @memberof ImportContentsDto */ doNotScript?: boolean; /** * True to turn off costly validation: Unique checks, asset checks and reference checks. Default: true. * @type {boolean} * @memberof ImportContentsDto */ optimizeValidation?: boolean; } /** * Check if a given object implements the ImportContentsDto interface. */ export declare function instanceOfImportContentsDto(value: any): value is ImportContentsDto; export declare function ImportContentsDtoFromJSON(json: any): ImportContentsDto; export declare function ImportContentsDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ImportContentsDto; export declare function ImportContentsDtoToJSON(value?: ImportContentsDto | null, _ignoreDiscriminator?: boolean): any;