/* Options: Date: 2026-08-01 07:29:42 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: ProjectLocationAccessLogRequest.* //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/projectlocation/{ProjectLocationID}/accesslog", Verbs="GET,OPTIONS") open class ProjectLocationAccessLogRequest : IReturn { open var ProjectLocationID:Int? = null companion object { private val responseType = ProjectLocationAccessLogResponse::class.java } override fun getResponseType(): Any? = ProjectLocationAccessLogRequest.responseType } open class ProjectLocationAccessLogResponse { open var ResponseStatus:ResponseStatus? = null open var Views:ArrayList = ArrayList() } open class SiteAccessEntry { open var SiteAccessAuditID:Int? = null open var ProjectLocationID:Int? = null open var ViewedBy:String? = null open var ViewedByName:String? = null open var ViewedAt:Date? = null }