/* Options: Date: 2025-05-06 21:03:43 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://unstable-consumer-api.brovs.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetRecentLocationRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/location/GetRecentLocation", Verbs="GET") open class GetRecentLocationRequest : IReturn, IGet { companion object { private val responseType = GetRecentLocationResponse::class.java } override fun getResponseType(): Any? = GetRecentLocationRequest.responseType } open class GetRecentLocationResponse { open var recentLocations:ArrayList = ArrayList() } enum class RecentLocationType { Home, Current, Pin, Named, } open class RecentLocationDto { open var name:String? = null open var description:String? = null open var latitude:Float? = null open var longitude:Float? = null open var locationType:RecentLocationType? = null open var googleAddressComponents:ArrayList = ArrayList() }