/** * 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 { TariffPrimaryDelivery } from './tariffPrimary'; /** * Payment rate for the performer\'s work with vehicle. */ export interface TariffDelivery { basic: TariffPrimaryDelivery | null; /** * Additional billing used for overtime work. It can be presented as several stages: for each stage of processing, it is possible to specify its own payment rate. Each stage is determined by the length and mileage from the previous one (the first from the basic tariff). */ extra?: Array; }