/* Options: Date: 2025-06-13 06:46:15 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws.jimsnwa.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CronMailRQ.* //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/CronMail") public static class CronMailRQ implements IReturn { public String Param = null; public String getParam() { return Param; } public CronMailRQ setParam(String value) { this.Param = value; return this; } private static Object responseType = CronMailRS.class; public Object getResponseType() { return responseType; } } public static class CronMailRS { public String Res = null; public String ErrorMessage = null; public String getRes() { return Res; } public CronMailRS setRes(String value) { this.Res = value; return this; } public String getErrorMessage() { return ErrorMessage; } public CronMailRS setErrorMessage(String value) { this.ErrorMessage = value; return this; } } }