/* Options: Date: 2024-12-23 11:19:30 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetRecentLocationRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* 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 { var recentLocations:ArrayList = ArrayList() } enum class RecentLocationType { Home, Current, Pin, Named, } open class RecentLocationDto { var name:String? = null var description:String? = null var latitude:Float? = null var longitude:Float? = null var locationType:RecentLocationType? = null var googleAddressComponents:ArrayList = ArrayList() }