/* Options: Date: 2025-06-27 00:54:25 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //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 { @Route(Path="/hello/{Name}", Verbs="GET POST") // @Route(Path="/hello", Verbs="GET POST") public static class Hello implements IReturn { public String name = null; public Boolean isWoman = null; public Integer age = null; public String getName() { return name; } public Hello setName(String value) { this.name = value; return this; } public Boolean getIsWoman() { return isWoman; } public Hello setIsWoman(Boolean value) { this.isWoman = value; return this; } public Integer getAge() { return age; } public Hello setAge(Integer value) { this.age = 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; } } }