/* 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 details about successful processed item */ export interface BulkProcessingSuccess { /** * Optional field populated only when request payload contains an externalId */ externalId?: string; /** * Unique identifier for the newly created resource */ id?: string; /** * The index of the entity/item from bulk request that failed on processing */ indexInRequest?: number; }