(* Options: Date: 2025-05-06 22:54:25 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://unstable-consumer-api.brovs.com //GlobalNamespace: ConsumerApi //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ProfileUpdateHomeLocationRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace ConsumerApi open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type UserAddress() = member val StreetName:String = null with get,set member val StreetNumber:String = null with get,set member val PostalCode:String = null with get,set member val Region:String = null with get,set member val CountryCode:String = null with get,set [] type HomeLocation() = member val Address:UserAddress = null with get,set member val Latitude:Single = new Single() with get,set member val Longitude:Single = new Single() with get,set [] type ProfileUpdateHomeLocationResponse() = member val HomeLocation:HomeLocation = null with get,set [] [] type ProfileUpdateHomeLocationRequest() = interface IReturn interface IPut member val Home:HomeLocation = null with get,set