/* Options: Date: 2025-08-18 06:12:02 Version: 8.81 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: TestUploadWithDto.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { public static class TestUploadWithDto implements IReturn, IPost { @SerializedName("int") public Integer Int = null; public Integer nullableId = null; @SerializedName("long") public Long Long = null; @SerializedName("double") public Double Double = null; public String string = null; public Date dateTime = null; public ArrayList intArray = null; public ArrayList intList = null; public ArrayList stringArray = null; public ArrayList stringList = null; public ArrayList pocoArray = null; public ArrayList pocoList = null; public ArrayList nullableByteArray = null; public ArrayList nullableByteList = null; public ArrayList nullableDateTimeArray = null; public ArrayList nullableDateTimeList = null; public HashMap> pocoLookup = null; public HashMap>> pocoLookupMap = null; public HashMap> mapList = null; public Integer getInt() { return Int; } public TestUploadWithDto setInt(Integer value) { this.Int = value; return this; } public Integer getNullableId() { return nullableId; } public TestUploadWithDto setNullableId(Integer value) { this.nullableId = value; return this; } public Long getLong() { return Long; } public TestUploadWithDto setLong(Long value) { this.Long = value; return this; } public Double getDouble() { return Double; } public TestUploadWithDto setDouble(Double value) { this.Double = value; return this; } public String getString() { return string; } public TestUploadWithDto setString(String value) { this.string = value; return this; } public Date getDateTime() { return dateTime; } public TestUploadWithDto setDateTime(Date value) { this.dateTime = value; return this; } public ArrayList getIntArray() { return intArray; } public TestUploadWithDto setIntArray(ArrayList value) { this.intArray = value; return this; } public ArrayList getIntList() { return intList; } public TestUploadWithDto setIntList(ArrayList value) { this.intList = value; return this; } public ArrayList getStringArray() { return stringArray; } public TestUploadWithDto setStringArray(ArrayList value) { this.stringArray = value; return this; } public ArrayList getStringList() { return stringList; } public TestUploadWithDto setStringList(ArrayList value) { this.stringList = value; return this; } public ArrayList getPocoArray() { return pocoArray; } public TestUploadWithDto setPocoArray(ArrayList value) { this.pocoArray = value; return this; } public ArrayList getPocoList() { return pocoList; } public TestUploadWithDto setPocoList(ArrayList value) { this.pocoList = value; return this; } public ArrayList getNullableByteArray() { return nullableByteArray; } public TestUploadWithDto setNullableByteArray(ArrayList value) { this.nullableByteArray = value; return this; } public ArrayList getNullableByteList() { return nullableByteList; } public TestUploadWithDto setNullableByteList(ArrayList value) { this.nullableByteList = value; return this; } public ArrayList getNullableDateTimeArray() { return nullableDateTimeArray; } public TestUploadWithDto setNullableDateTimeArray(ArrayList value) { this.nullableDateTimeArray = value; return this; } public ArrayList getNullableDateTimeList() { return nullableDateTimeList; } public TestUploadWithDto setNullableDateTimeList(ArrayList value) { this.nullableDateTimeList = value; return this; } public HashMap> getPocoLookup() { return pocoLookup; } public TestUploadWithDto setPocoLookup(HashMap> value) { this.pocoLookup = value; return this; } public HashMap>> getPocoLookupMap() { return pocoLookupMap; } public TestUploadWithDto setPocoLookupMap(HashMap>> value) { this.pocoLookupMap = value; return this; } public HashMap> getMapList() { return mapList; } public TestUploadWithDto setMapList(HashMap> value) { this.mapList = value; return this; } private static Object responseType = TestUploadWithDto.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; } } }