/* 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: PortalVisitsRequest.* //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="/portal/{Token}/visits", Verbs="GET,OPTIONS") open class PortalVisitsRequest : IReturn { open var Token:String? = null companion object { private val responseType = PortalVisitsResponse::class.java } override fun getResponseType(): Any? = PortalVisitsRequest.responseType } open class PortalVisitsResponse { open var ResponseStatus:ResponseStatus? = null open var Visits:ArrayList = ArrayList() open var Photos:ArrayList = ArrayList() } open class CustomerVisit { open var AgreementJobID:Int? = null open var VisitDate:Date? = null open var CompletedAt:Date? = null open var ServiceName:String? = null open var CrewNotes:String? = null } open class CustomerVisitPhoto { open var ProjectLocationAttachmentID:Int? = null open var AgreementJobID:Int? = null open var DocTitle:String? = null open var MimeType:String? = null open var UploadDate:Date? = null }