/* Options: Date: 2025-05-06 15:58:21 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: VenueGetRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/Venue/{Id}", Verbs="GET") open class VenueGetRequest : IReturn { var id:Int? = null companion object { private val responseType = VenueResult::class.java } override fun getResponseType(): Any? = VenueGetRequest.responseType } open class VenueResult { var item:Venue? = null var statusCode:Int? = null var message:String? = null } open class Venue { var id:Int? = null var name:String? = null var countryCode:String? = null var latitude:BigDecimal? = null var longitude:BigDecimal? = null }