/* Options: Date: 2024-05-04 15:21:23 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://web.web-templates.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Hello.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/hello/{Name}") open class Hello : IReturn, IGet { var name:String? = null companion object { private val responseType = HelloResponse::class.java } override fun getResponseType(): Any? = Hello.responseType } open class HelloResponse { var result:String? = null }