/* tslint:disable */ /* eslint-disable */ /** * bulks * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Holds information about the error encountered processing an item in bulk */ export interface BulkProcessingError { /** * Numeric value associated to the error reason */ errorCode?: number; /** * Error reason */ errorReason?: string; /** * Details about the error */ errorSource?: string; /** * Optional field populated only when request payload contains an externalId */ externalId?: string; /** * The index of the entity/item from bulk request that failed on processing */ indexInRequest?: number; }