/**
 * This file was generated by st-open-api
 */
import { IBatchStatusEcotransitBatchStatusResponse } from './interface/i-batch-status-ecotransit-batch-status-response';
import { IItemsEcotransitBatchStatusResponse } from './interface/i-items-ecotransit-batch-status-response';
export interface IEcotransitBatchStatusResponse {
    batchId: string;
    batchStatus?: IBatchStatusEcotransitBatchStatusResponse;
    cursor?: string;
    items: Array<IItemsEcotransitBatchStatusResponse>;
    limit?: number;
}
