/* Options: Date: 2024-05-16 02:49:46 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: HelloSubAllTypes.* //ExcludeTypes: //InitializeCollections: True //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.* open class HelloSubAllTypes : AllTypesBase(), IReturn { var hierarchy:Int? = null companion object { private val responseType = SubAllTypes::class.java } override fun getResponseType(): Any? = HelloSubAllTypes.responseType } open class SubAllTypes : AllTypesBase() { var hierarchy:Int? = null } open class KeyValuePair { var key:TKey? = null var value:TValue? = null } open class SubType { var id:Int? = null var name:String? = null } open class AllTypesBase { var id:Int? = null var nullableId:Int? = null @SerializedName("byte") var Byte:Short? = null @SerializedName("short") var Short:Short? = null @SerializedName("int") var Int:Int? = null @SerializedName("long") var Long:Long? = null var uShort:Int? = null var uInt:Long? = null var uLong:BigInteger? = null @SerializedName("float") var Float:Float? = null @SerializedName("double") var Double:Double? = null var decimal:BigDecimal? = null var string:String? = null var dateTime:Date? = null var timeSpan:TimeSpan? = null var dateTimeOffset:Date? = null var guid:UUID? = null @SerializedName("char") var Char:String? = null var keyValuePair:KeyValuePair? = null var nullableDateTime:Date? = null var nullableTimeSpan:TimeSpan? = null var stringList:ArrayList = ArrayList() var stringArray:ArrayList? = null var stringMap:HashMap = HashMap() var intStringMap:HashMap = HashMap() var subType:SubType? = null }