/* Options: Date: 2025-05-06 16:05:28 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: EventsWithLocationRequest.* //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(Path="/EventsWithLocation", Verbs="GET") // @Route(Path="/EventsWithLocation/MaxDays/{MaxDays}", Verbs="POST/GET") open class EventsWithLocationRequest : IReturn { var maxDays:Int? = null companion object { private val responseType = EventsWithLocationResult::class.java } override fun getResponseType(): Any? = EventsWithLocationRequest.responseType } open class EventsWithLocationResult { var status:Status? = null @SerializedName("data") var Data:ArrayList = ArrayList() } open class Status { var statusCode:Int? = null var statusMessage:String? = null var statusDetails:String? = null } open class EventWithLocation { var id:Int? = null var name:String? = null var description:String? = null var timeOfEvent:Date? = null var eventActive:Boolean? = null var eventSeriesActive:Boolean? = null var eventLocationName:String? = null var latitude:BigDecimal? = null var longitude:BigDecimal? = null var addressName:String? = null var addressLine:String? = null var zip:String? = null var city:String? = null var countryCode:String? = null var postPonedNoDate:Boolean? = null var endOfEvent:Date? = null }