/* Options: Date: 2024-05-14 05:54:49 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: HelloInnerTypes.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { public static class HelloInnerTypes implements IReturn { private static Object responseType = HelloInnerTypesResponse.class; public Object getResponseType() { return responseType; } } public static class HelloInnerTypesResponse { public InnerType innerType = null; public InnerEnum innerEnum = null; public InnerType getInnerType() { return innerType; } public HelloInnerTypesResponse setInnerType(InnerType value) { this.innerType = value; return this; } public InnerEnum getInnerEnum() { return innerEnum; } public HelloInnerTypesResponse setInnerEnum(InnerEnum value) { this.innerEnum = value; return this; } } public static class InnerType { public Long id = null; public String name = null; public Long getId() { return id; } public InnerType setId(Long value) { this.id = value; return this; } public String getName() { return name; } public InnerType setName(String value) { this.name = value; return this; } } public static enum InnerEnum { Foo, Bar, Baz; } }