/* Options: Date: 2025-06-13 07:18:05 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws.jimsnwa.com //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 }