/* Options: Date: 2026-06-22 20:33:27 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: VisitBoardRequest.* //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/visits/board", Verbs="GET,OPTIONS") open class VisitBoardRequest : IReturn { open var Date:String? = null companion object { private val responseType = VisitBoardResponse::class.java } override fun getResponseType(): Any? = VisitBoardRequest.responseType } open class VisitBoardResponse { open var Date:String? = null open var Crews:ArrayList = ArrayList() open var Unassigned:ArrayList = ArrayList() open var Readiness:BoardReadiness? = null open var ResponseStatus:ResponseStatus? = null } open class CrewColumn { open var CrewID:Int? = null open var CrewName:String? = null open var CrewColor:String? = null open var MemberCount:Int? = null open var Visits:ArrayList = ArrayList() open var DriveMiles:Double? = null open var DriveMinutes:Int? = null open var OnSiteMinutes:Int? = null open var BillablePct:Int? = null } open class VisitCard { open var VisitKey:String? = null open var JobID:Int? = null open var ProjectID:Int? = null open var ProjectUID:String? = null open var AgreementJobID:Int? = null open var ScheduledDate:String? = null open var CustomerName:String? = null open var JobName:String? = null open var LocationName:String? = null open var City:String? = null open var Zip:String? = null open var Lat:Double? = null open var Lng:Double? = null open var CrewID:Int? = null open var CrewName:String? = null open var SortOrder:Int? = null open var Status:String? = null open var DurationMinutes:Int? = null open var EtaWindow:String? = null open var IsCommercial:Boolean? = null } open class BoardReadiness { open var TotalVisits:Int? = null open var Assigned:Int? = null open var Unassigned:Int? = null open var Conflicts:Int? = null open var AssignedPct:Int? = null }