/* Options: Date: 2025-08-18 06:06:54 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: TestUploadWithDto.* //ExcludeTypes: //InitializeCollections: False //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.* open class TestUploadWithDto : IReturn, IPost { @SerializedName("int") open var Int:Int? = null open var nullableId:Int? = null @SerializedName("long") open var Long:Long? = null @SerializedName("double") open var Double:Double? = null open var string:String? = null open var dateTime:Date? = null open var intArray:ArrayList? = null open var intList:ArrayList? = null open var stringArray:ArrayList? = null open var stringList:ArrayList? = null open var pocoArray:ArrayList? = null open var pocoList:ArrayList? = null open var nullableByteArray:ArrayList? = null open var nullableByteList:ArrayList? = null open var nullableDateTimeArray:ArrayList? = null open var nullableDateTimeList:ArrayList? = null open var pocoLookup:HashMap>? = null open var pocoLookupMap:HashMap>>? = null open var mapList:HashMap>? = null companion object { private val responseType = TestUploadWithDto::class.java } override fun getResponseType(): Any? = TestUploadWithDto.responseType } open class Poco { open var name:String? = null }