/* Options: Date: 2024-05-12 05:00:42 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: TestDataAllCollectionTypes.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* open class AllCollectionTypes : IReturn { var intArray:ArrayList? = null var intList:ArrayList = ArrayList() var stringArray:ArrayList? = null var stringList:ArrayList = ArrayList() var floatArray:ArrayList? = null var doubleList:ArrayList = ArrayList() var byteArray:ByteArray? = null var charArray:ArrayList? = null var decimalList:ArrayList = ArrayList() var pocoArray:ArrayList? = null var pocoList:ArrayList = ArrayList() var pocoLookup:HashMap> = HashMap>() var pocoLookupMap:HashMap>> = HashMap>>() companion object { private val responseType = AllCollectionTypes::class.java } override fun getResponseType(): Any? = AllCollectionTypes.responseType } @Route("/testdata/AllCollectionTypes") open class TestDataAllCollectionTypes : IReturn { companion object { private val responseType = AllCollectionTypes::class.java } override fun getResponseType(): Any? = TestDataAllCollectionTypes.responseType } open class Poco { var name:String? = null }