/** * VRt.Universal [UV] * * The version of the OpenAPI document: 7.26.3024 * Contact: servicedesk@veeroute.com * * NOTE: This class is auto generated by OpenAPI Generator. * Do not edit the class manually. */ import { LocationLimitStatisticsUniversal } from './locationLimitStatistics'; import { LocationCargosLimitUniversal } from './locationCargosLimit'; import { LocationTransportsLimitUniversal } from './locationTransportsLimit'; /** * Statistics for a specific trip. */ export interface LocationStatisticsUniversal { [key: string]: any | any; /** * Location key. */ location_key: string; /** * Amount of fines for violating location\'s capacity limit. */ location_limits_penalty: number; /** * For location - The amount of measures of cargos moved and the amount of fines for violating restrictions on the movement of cargos. * @deprecated */ total_cargos_statistics: LocationCargosLimitUniversal; /** * For location - the number of transports serviced on average during a specified time window and the amount of fines for violating transport service restrictions. * @deprecated */ total_transports_statistics: LocationTransportsLimitUniversal; /** * Location capacity limit statistics. */ limits_statistics: Array; }