/* Options: Date: 2025-12-06 13:06:47 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AuditLogRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @Route(Path="/audits", Verbs="GET") open class AuditLogRequest : PagingRequest(), IReturn> { var userName:String? = null var userId:Int? = null var documentId:Int? = null var action:String? = null var description:String? = null var ipAddress:String? = null var startDate:Date? = null var endDate:Date? = null companion object { private val responseType = object : TypeToken>(){}.type } override fun getResponseType(): Any? = AuditLogRequest.responseType } open class PageResponse : IResponseRequest { var code:Int? = null var message:String? = null @SerializedName("data") var Data:ArrayList = ArrayList() var pagination:Pagination? = null } open class PagingRequest { var page:Int? = null var limit:Int? = null }