/* Options: Date: 2024-05-10 08:35:19 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: SendPut.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* open class SendPut : IReturn, IPut { var id:Int? = null companion object { private val responseType = SendVerbResponse::class.java } override fun getResponseType(): Any? = SendPut.responseType } open class SendVerbResponse { var id:Int? = null var pathInfo:String? = null var requestMethod:String? = null }