/* Options: Date: 2024-07-03 13:02:31 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: CompanyCoordinatesQuery.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using System.Globalization; using System.IO; using BokaMera.API.ServiceModel.Dtos; namespace BokaMera.API.ServiceModel.Dtos { [Route("/companies/coordinates", "GET")] public partial class CompanyCoordinatesQuery : IReturn { /// ///Street address /// [ApiMember(Description="Street address", IsRequired=true, ParameterType="query")] public virtual string Street1 { get; set; } /// ///Street adress /// [ApiMember(Description="Street adress", ParameterType="query")] public virtual string Street2 { get; set; } /// ///Street zip code /// [ApiMember(Description="Street zip code", IsRequired=true, ParameterType="query")] public virtual string ZipCode { get; set; } /// ///City /// [ApiMember(Description="City", IsRequired=true, ParameterType="query")] public virtual string City { get; set; } /// ///Country Id (Example SE= Sweden) /// [ApiMember(Description="Country Id (Example SE= Sweden)", IsRequired=true, ParameterType="query")] public virtual string CountryId { get; set; } } public partial class CompanyCoordinatesQueryResponse { public virtual double Longitude { get; set; } public virtual double Latitude { get; set; } } }