/* Options: Date: 2026-09-05 08:47:01 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: DispatchLoadsRequest.* //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/loads", Verbs="GET,OPTIONS") open class DispatchLoadsRequest : IReturn { open var Hours:Int? = null open var Module:String? = null companion object { private val responseType = DispatchLoadsResponse::class.java } override fun getResponseType(): Any? = DispatchLoadsRequest.responseType } open class DispatchLoadsResponse { open var Loads:ArrayList = ArrayList() open var Hours:Int? = null open var ResponseStatus:ResponseStatus? = null } open class DispatchLoadView { open var LoadId:Int? = null open var Code:String? = null open var Module:String? = null open var TruckLabel:String? = null open var DriverLabel:String? = null open var CarrierLabel:String? = null open var SourceLabel:String? = null open var DestinationLabel:String? = null open var Qty:BigDecimal? = null open var Unit:String? = null open var QtyText:String? = null open var TicketCode:String? = null open var RateApplied:BigDecimal? = null open var RateBasis:String? = null open var Revenue:BigDecimal? = null open var PayPlanLabel:String? = null open var Pay:BigDecimal? = null open var Status:String? = null open var OpenedUtc:Date? = null open var ClosedUtc:Date? = null open var Photos:Int? = null open var Stages:ArrayList = ArrayList() } open class DispatchLoadStageView { open var Stage:String? = null open var AtUtc:Date? = null open var Note:String? = null }