/* Options: Date: 2025-05-10 01:11:06 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://active-ewebservice.biz/aeservices30/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: Hello.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { /** * Hello web service. */ @Route(Path="/Hello", Verbs="POST, GET") @DataContract public static class Hello implements IReturn { @DataMember 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; } } }