/* Options: Date: 2025-12-06 13:28:56 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: UpdateAsRead.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* /** * Cập nhật sang đã đọc theo notification Id */ @Route(Path="/notifications/{Id}", Verbs="Post") // @Route(Path="/notifications", Verbs="Post") open class UpdateAsRead : IReturn { var id:String? = null companion object { private val responseType = IResponseRequest::class.java } override fun getResponseType(): Any? = UpdateAsRead.responseType } open interface IResponseRequest { var code:Int? var message:String? }