/* Options: Date: 2025-12-06 13:05:43 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: DocumentRejectedRequest.* //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/Rejected", Verbs="POST") open class DocumentRejectedRequest : IReturn, IPost { var documentId:Int? = null var submitComment:String? = null companion object { private val responseType = ApprovalResponse::class.java } override fun getResponseType(): Any? = DocumentRejectedRequest.responseType } open class ApprovalResponse : IResponseRequest { var code:Int? = null var message:String? = null } open interface IResponseRequest { var code:Int? var message:String? }