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