/* Options: Date: 2024-05-09 05:30:07 Version: 6.111 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: EchoComplexTypes.* //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 { @Route("/echo/complex") public static class EchoComplexTypes implements IReturn { public SubType subType = null; public ArrayList subTypes = null; public HashMap subTypeMap = null; public HashMap stringMap = null; public HashMap intStringMap = null; public SubType getSubType() { return subType; } public EchoComplexTypes setSubType(SubType value) { this.subType = value; return this; } public ArrayList getSubTypes() { return subTypes; } public EchoComplexTypes setSubTypes(ArrayList value) { this.subTypes = value; return this; } public HashMap getSubTypeMap() { return subTypeMap; } public EchoComplexTypes setSubTypeMap(HashMap value) { this.subTypeMap = value; return this; } public HashMap getStringMap() { return stringMap; } public EchoComplexTypes setStringMap(HashMap value) { this.stringMap = value; return this; } public HashMap getIntStringMap() { return intStringMap; } public EchoComplexTypes setIntStringMap(HashMap value) { this.intStringMap = value; return this; } private static Object responseType = EchoComplexTypes.class; public Object getResponseType() { return responseType; } } public static class SubType { public Integer id = null; public String name = null; public Integer getId() { return id; } public SubType setId(Integer value) { this.id = value; return this; } public String getName() { return name; } public SubType setName(String value) { this.name = value; return this; } } }