/* 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: DeleteDocumentPolicyRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/DocumentPolicy/delete", Verbs="DELETE") open class DeleteDocumentPolicyRequest : IReturn, IDelete { var id:Int? = null companion object { private val responseType = DocumentPolicyUpdateResponse::class.java } override fun getResponseType(): Any? = DeleteDocumentPolicyRequest.responseType } open class DocumentPolicyUpdateResponse : IResponseRequest { var code:Int? = null var message:String? = null var updatedId:Int? = null } open interface IResponseRequest { var code:Int? var message:String? }