/* Options: Date: 2025-10-27 18:44: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: Hello.* //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="/hello") // @Route(Path="/hello/{Name}") public static class Hello implements IReturn { public String Name = null; public String getName() { return Name; } public Hello setName(String value) { this.Name = value; return this; } private static Object responseType = HelloResponse.class; public Object getResponseType() { return responseType; } } public static class HelloResponse { public String Result = null; public String getResult() { return Result; } public HelloResponse setResult(String value) { this.Result = value; return this; } } }