/** * 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 { LocationCargosLimitUniversal } from './locationCargosLimit'; import { LocationTransportsLimitUniversal } from './locationTransportsLimit'; /** * Statistics on the implementation of location capacity limits within one time window. */ export interface LocationLimitStatisticsUniversal { [key: string]: any | any; /** * Location limit key, unique identifier. */ location_limit_key: string; /** * For time window - the amount of measures of cargos moved and the amount of fines for violating restrictions on the movement of cargos. */ cargos_statistics: LocationCargosLimitUniversal; /** * For time window - the number of transports serviced on average during a specified time window and the amount of fines for violating transport service restrictions. */ transports_statistics: LocationTransportsLimitUniversal; /** * The amount of fines for violating the location\'s capacity within the limit. */ location_limit_penalty: number; }