/**
 * VRt.Studio [ST]
 *
 * The version of the OpenAPI document: 7.18.2755
 * Contact: servicedesk@veeroute.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator.
 * Do not edit the class manually.
 */
import { LocationCargosLimitStudio } from './locationCargosLimit';
import { LocationTransportsLimitStudio } from './locationTransportsLimit';
/**
 * Statistics on the implementation of location capacity limits within one time window.
 */
export interface LocationLimitStatisticsStudio {
    [key: string]: any | any;
    /**
     * Location limit key, unique identifier.
     */
    location_limit_key: string;
    cargos_statistics: LocationCargosLimitStudio;
    transports_statistics: LocationTransportsLimitStudio;
    /**
     * The amount of fines for violating the location\'s capacity within the limit.
     */
    location_limit_penalty: number;
}
