/* Options: Date: 2024-05-09 20:27:23 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: AllCollectionTypes.* //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 AllCollectionTypes implements IReturn { public ArrayList intArray = null; public ArrayList intList = null; public ArrayList stringArray = null; public ArrayList stringList = null; public ArrayList floatArray = null; public ArrayList doubleList = null; public byte[] byteArray = null; public ArrayList charArray = null; public ArrayList decimalList = null; public ArrayList pocoArray = null; public ArrayList pocoList = null; public HashMap> pocoLookup = null; public HashMap>> pocoLookupMap = null; public ArrayList getIntArray() { return intArray; } public AllCollectionTypes setIntArray(ArrayList value) { this.intArray = value; return this; } public ArrayList getIntList() { return intList; } public AllCollectionTypes setIntList(ArrayList value) { this.intList = value; return this; } public ArrayList getStringArray() { return stringArray; } public AllCollectionTypes setStringArray(ArrayList value) { this.stringArray = value; return this; } public ArrayList getStringList() { return stringList; } public AllCollectionTypes setStringList(ArrayList value) { this.stringList = value; return this; } public ArrayList getFloatArray() { return floatArray; } public AllCollectionTypes setFloatArray(ArrayList value) { this.floatArray = value; return this; } public ArrayList getDoubleList() { return doubleList; } public AllCollectionTypes setDoubleList(ArrayList value) { this.doubleList = value; return this; } public byte[] getByteArray() { return byteArray; } public AllCollectionTypes setByteArray(byte[] value) { this.byteArray = value; return this; } public ArrayList getCharArray() { return charArray; } public AllCollectionTypes setCharArray(ArrayList value) { this.charArray = value; return this; } public ArrayList getDecimalList() { return decimalList; } public AllCollectionTypes setDecimalList(ArrayList value) { this.decimalList = value; return this; } public ArrayList getPocoArray() { return pocoArray; } public AllCollectionTypes setPocoArray(ArrayList value) { this.pocoArray = value; return this; } public ArrayList getPocoList() { return pocoList; } public AllCollectionTypes setPocoList(ArrayList value) { this.pocoList = value; return this; } public HashMap> getPocoLookup() { return pocoLookup; } public AllCollectionTypes setPocoLookup(HashMap> value) { this.pocoLookup = value; return this; } public HashMap>> getPocoLookupMap() { return pocoLookupMap; } public AllCollectionTypes setPocoLookupMap(HashMap>> value) { this.pocoLookupMap = value; return this; } private static Object responseType = AllCollectionTypes.class; public Object getResponseType() { return responseType; } } public static class Poco { public String name = null; public String getName() { return name; } public Poco setName(String value) { this.name = value; return this; } } }