/* Options: Date: 2024-05-16 21:06:39 Version: 6.111 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EchoCollections.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/echo/collections") open class EchoCollections : IReturn { var stringList:ArrayList = ArrayList() var stringArray:ArrayList? = null var stringMap:HashMap = HashMap() var intStringMap:HashMap = HashMap() companion object { private val responseType = EchoCollections::class.java } override fun getResponseType(): Any? = EchoCollections.responseType }