(* Options: Date: 2024-09-16 20:54:14 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: CompanyCoordinatesQuery.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BokaMera.API.ServiceModel.Dtos open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization open ServiceStack.Data [] type CompanyCoordinatesQueryResponse() = member val Longitude:Double = new Double() with get,set member val Latitude:Double = new Double() with get,set [] [] type CompanyCoordinatesQuery() = interface IReturn /// ///Street address /// [] member val Street1:String = null with get,set /// ///Street adress /// [] member val Street2:String = null with get,set /// ///Street zip code /// [] member val ZipCode:String = null with get,set /// ///City /// [] member val City:String = null with get,set /// ///Country Id (Example SE= Sweden) /// [] member val CountryId:String = null with get,set