/** * ClimatePartner API Calculation Service * A Unified API for all ClimatePartner products * * The version of the OpenAPI document: 1.6.4 * * * 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 { EcotransitBatchStatusResponseBatchStatus } from './ecotransit-batch-status-response-batch-status'; import type { EcotransitBatchStatusResponseItemsInner } from './ecotransit-batch-status-response-items-inner'; export interface EcotransitBatchStatusResponse { 'batchId': string; 'batchStatus'?: EcotransitBatchStatusResponseBatchStatus; 'items': Array; /** * The current postion of last item on the page */ 'cursor'?: string; /** * Maximum number of items to return in this request */ 'limit'?: number; }