/* Options: Date: 2026-09-05 09:34:57 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DispatchLaneRateSaveRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/v1/dispatch/rates/lane", Verbs="PUT,OPTIONS") open class DispatchLaneRateSaveRequest : IReturn { open var Lane:DispatchLaneRateView? = null companion object { private val responseType = DispatchRatesResponse::class.java } override fun getResponseType(): Any? = DispatchLaneRateSaveRequest.responseType } open class DispatchRatesResponse { open var Config:DispatchRateConfigView? = null open var Lanes:ArrayList = ArrayList() open var Zones:ArrayList = ArrayList() open var Plans:ArrayList = ArrayList() open var Repriced:Int? = null open var StillNoRevenue:Int? = null open var StillNoPay:Int? = null open var ResponseStatus:ResponseStatus? = null } open class DispatchRateConfigView { open var FuelSurchargePct:BigDecimal? = null open var TransportPerMile:BigDecimal? = null open var TransportJobMin:BigDecimal? = null open var TransportEnclosedUpliftPct:BigDecimal? = null open var OdBase:BigDecimal? = null open var OdPerBag:BigDecimal? = null open var OdPremiumUpliftPct:BigDecimal? = null open var HaulBasis:String? = null open var Facility:String? = null open var Unit:String? = null open var LoadQty:BigDecimal? = null } open class DispatchLaneRateView { open var DispatchSiteID:Int? = null open var DispatchSupplierID:Int? = null open var SourceLabel:String? = null open var SupplierName:String? = null open var DispatchLaneRateID:Int? = null open var Miles:BigDecimal? = null open var RatePerTon:BigDecimal? = null open var RatePerLoad:BigDecimal? = null open var RatePerTonMile:BigDecimal? = null open var RatePerHour:BigDecimal? = null } open class DispatchZoneRateView { open var Zone:String? = null open var DispatchZoneRateID:Int? = null open var Base:BigDecimal? = null open var PerBag:BigDecimal? = null open var PremiumUpliftPct:BigDecimal? = null open var Drivers:Int? = null } open class DispatchPayPlanView { open var DispatchPayPlanID:Int? = null open var Name:String? = null open var Basis:String? = null open var Rate:BigDecimal? = null open var Rate2:BigDecimal? = null open var EffectiveDate:Date? = null open var IsActive:Boolean? = null open var Drivers:Int? = null }