/* Options: Date: 2026-06-22 20:30:48 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: VisitExceptionsRequest.* //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/exceptions", Verbs="GET,OPTIONS") open class VisitExceptionsRequest : IReturn { companion object { private val responseType = VisitExceptionsResponse::class.java } override fun getResponseType(): Any? = VisitExceptionsRequest.responseType } open class VisitExceptionsResponse { open var Items:ArrayList = ArrayList() open var MissedCount:Int? = null open var SlaCount:Int? = null open var SkippedCount:Int? = null open var AtRiskCount:Int? = null open var ResponseStatus:ResponseStatus? = null } open class ExceptionItem { open var Kind:String? = null open var VisitKey:String? = null open var JobID:Int? = null open var ProjectID:Int? = null open var AgreementID:Int? = null open var AgreementJobID:Int? = null open var OccurrenceDate:String? = null open var CustomerName:String? = null open var LocationName:String? = null open var City:String? = null open var Lat:Double? = null open var Lng:Double? = null open var AgeDays:Int? = null open var Reason:String? = null open var DurationMinutes:Int? = null open var IsCommercial:Boolean? = null open var PreferredCrewID:Int? = null }