/* Options: Date: 2024-05-12 08:14:43 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: HelloTypes.* //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.* @Route("/hellotypes/{Name}") open class HelloTypes : IReturn { var string:String? = null var bool:Boolean? = null @SerializedName("int") var Int:Int? = null companion object { private val responseType = HelloTypes::class.java } override fun getResponseType(): Any? = HelloTypes.responseType }