/* Options: Date: 2026-02-04 11:50:35 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: DeleteDocumentRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/document/{Id}", Verbs="DELETE") open class DeleteDocumentRequest : IReturn { var id:Int? = null companion object { private val responseType = DeleteDocumentResponse::class.java } override fun getResponseType(): Any? = DeleteDocumentRequest.responseType } open class DeleteDocumentResponse : IResponseRequest { var code:Int? = null var message:String? = null } open interface IResponseRequest { var code:Int? var message:String? }