/** * Veeroute.Lastmile * Veeroute Lastmile 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 { TariffConstraintLastmile } from './tariffConstraint'; /** * The tariff determines shift cost and restrictions. */ export interface UniversalTariffLastmile { /** * Price for using the shift, monetary unit. */ cost_per_shift: number; /** * Tariff restrictions list. */ constraints: Array; /** * Max sum of penalties for performer or transport using this shift, monetary unit. */ max_penalty_cost?: number; }