/* Options: Date: 2024-06-16 22:07:03 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.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: ServicePricesMappingQuery.* //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.Interfaces; using BokaMera.API.ServiceModel.Dtos; namespace BokaMera.API.ServiceModel.Dtos { public partial class ServicePriceMappingResponse { /// ///The company id /// [ApiMember(Description="The company id")] public virtual Guid CompanyId { get; set; } public virtual Guid Id { get; set; } /// ///The price id /// [ApiMember(Description="The price id")] public virtual int PriceId { get; set; } /// ///The external reference /// [ApiMember(Description="The external reference")] public virtual string ExternalReference { get; set; } /// ///The Reference Type /// [ApiMember(Description="The Reference Type")] public virtual string ReferenceType { get; set; } } [Route("/services/prices/mappings", "GET")] [ValidateRequest("IsAuthenticated")] public partial class ServicePricesMappingQuery : IReturn, ICompany { /// ///Company to show services for /// [ApiMember(Description="Company to show services for")] public virtual Guid? CompanyId { get; set; } /// ///ReferenceType /// [ApiMember(Description="ReferenceType")] public virtual string ReferenceType { get; set; } } } namespace BokaMera.API.ServiceModel.Interfaces { public partial interface ICompany { Guid? CompanyId { get; set; } } }