/* Options: Date: 2025-06-07 18:47:07 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://soluser-recaudo.sgsas.co //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: NotificarEmailRQ.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/Utilidades/Notificar") open class NotificarEmailRQ : IReturn { var email:String? = null var asunto:String? = null var body:String? = null companion object { private val responseType = NotificarEmailRS::class.java } override fun getResponseType(): Any? = NotificarEmailRQ.responseType } open class NotificarEmailRS { var estado:Int? = null }