/* Options: Date: 2025-06-07 16:57:04 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://soluser-recaudo.sgsas.co //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: NotificarEmailRQ.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/Utilidades/Notificar") public static class NotificarEmailRQ implements IReturn { public String email = null; public String asunto = null; public String body = null; public String getEmail() { return email; } public NotificarEmailRQ setEmail(String value) { this.email = value; return this; } public String getAsunto() { return asunto; } public NotificarEmailRQ setAsunto(String value) { this.asunto = value; return this; } public String getBody() { return body; } public NotificarEmailRQ setBody(String value) { this.body = value; return this; } private static Object responseType = NotificarEmailRS.class; public Object getResponseType() { return responseType; } } public static class NotificarEmailRS { public Integer estado = null; public Integer getEstado() { return estado; } public NotificarEmailRS setEstado(Integer value) { this.estado = value; return this; } } }