/* Options: Date: 2025-10-28 00:52:37 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SendTestEmail.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/test/email") public static class SendTestEmail implements IReturn { public String From = null; public String To = null; public String Msg = null; public String getFrom() { return From; } public SendTestEmail setFrom(String value) { this.From = value; return this; } public String getTo() { return To; } public SendTestEmail setTo(String value) { this.To = value; return this; } public String getMsg() { return Msg; } public SendTestEmail setMsg(String value) { this.Msg = value; return this; } private static Object responseType = Object.class; public Object getResponseType() { return responseType; } } }