' Options: 'Date: 2024-12-23 12:06:31 'Version: 8.0 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://consumer-api.brovs.com ' '''GlobalNamespace: ConsumerApi '''MakePartial: True '''MakeVirtual: False '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: True '''ExportValueTypes: False 'IncludeTypes: GetRecentLocationRequest.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports ConsumerApi Namespace Global Namespace ConsumerApi Public Partial Class GetRecentLocationRequest Implements IReturn(Of GetRecentLocationResponse) Implements IGet End Class Public Partial Class GetRecentLocationResponse Public Sub New() RecentLocations = New List(Of RecentLocationDto) End Sub Public Property RecentLocations As List(Of RecentLocationDto) End Class Public Partial Class RecentLocationDto Public Sub New() GoogleAddressComponents = New List(Of String) End Sub Public Property Name As String Public Property Description As String Public Property Latitude As Single Public Property Longitude As Single Public Property LocationType As RecentLocationType Public Property GoogleAddressComponents As List(Of String) End Class Public Enum RecentLocationType Home Current Pin Named End Enum End Namespace End Namespace