/* Options: Date: 2024-05-12 10:09:52 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: HelloImage.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/hello-image/{Name}") open class HelloImage : IReturn { var name:String? = null var format:String? = null var width:Int? = null var height:Int? = null var fontSize:Int? = null var fontFamily:String? = null var foreground:String? = null var background:String? = null companion object { private val responseType = ByteArray::class.java } override fun getResponseType(): Any? = HelloImage.responseType }