(* Options: Date: 2024-12-23 12:00:37 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //GlobalNamespace: ConsumerApi //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetRecentLocationRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace ConsumerApi open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type RecentLocationType = | Home = 0 | Current = 1 | Pin = 2 | Named = 3 [] type RecentLocationDto() = member val Name:String = null with get,set member val Description:String = null with get,set member val Latitude:Single = new Single() with get,set member val Longitude:Single = new Single() with get,set member val LocationType:RecentLocationType = new RecentLocationType() with get,set member val GoogleAddressComponents:ResizeArray = new ResizeArray() with get,set [] type GetRecentLocationResponse() = member val RecentLocations:ResizeArray = new ResizeArray() with get,set [] [] type GetRecentLocationRequest() = interface IReturn interface IGet