/** * 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 { ErrorDto } from './ErrorDto'; /** * * @export * @interface BulkResultDto */ export interface BulkResultDto { /** * * @type {ErrorDto} * @memberof BulkResultDto */ error?: ErrorDto; /** * The index of the bulk job where the result belongs to. The order can change. * @type {number} * @memberof BulkResultDto */ jobIndex: number; /** * The ID of the entity that has been handled successfully or not. * @type {string} * @memberof BulkResultDto */ id?: string | null; /** * The ID of the entity that has been handled successfully or not. * @type {string} * @memberof BulkResultDto * @deprecated */ contentId?: string | null; } /** * Check if a given object implements the BulkResultDto interface. */ export declare function instanceOfBulkResultDto(value: any): value is BulkResultDto; export declare function BulkResultDtoFromJSON(json: any): BulkResultDto; export declare function BulkResultDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): BulkResultDto; export declare function BulkResultDtoToJSON(value?: BulkResultDto | null, _ignoreDiscriminator?: boolean): any;