/** * Veeroute.Delivery * Veeroute Delivery API * * The version of the OpenAPI document: 3.15.183137 * Contact: support@veeroute.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { CapacityDelivery } from './capacity'; import { MeasurementsDelivery } from './measurements'; import { QualityStatisticsDelivery } from './qualityStatistics'; /** * General statistics for one or more trips. * `capacity_utilization` - the ratio of the total utilization value for the capacity parameter to the capacity for this parameter. * `capacity_max` - max capacity load. */ export interface StatisticsDelivery { /** * Total costs calculated based on the performer\'s and transport tariffs. The total cost is equal to the difference between the total reward (`reward`) and expenses (`cost`). */ cost: number; /** * The total reward for orders fulfillment. */ reward: number; measurements: MeasurementsDelivery | null; /** * The total number of planned and assigned orders. */ orders_count: number; /** * The total number of planned orders. */ plan_orders_count?: number; /** * The total number of assigned orders. */ waitlist_orders_count?: number; /** * The total number of performers involved in orders fulfillment. */ performers_count: number; capacity_utilization?: CapacityDelivery | null; capacity_max?: CapacityDelivery | null; quality?: QualityStatisticsDelivery | null; }