/* Options: Date: 2026-05-19 09:52:12 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //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: GetPrice.* //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 Richemont.Booster2.PublicApi.MasterFile.ServiceModel; namespace Richemont.Booster2.PublicApi.MasterFile.ServiceModel { public partial class DealerCostPrice { /// ///Currency of the Dealer Cost Price /// [ApiMember(Description="Currency of the Dealer Cost Price", IsRequired=true)] public virtual string currency { get; set; } /// ///Dealer Cost Price of the item /// [ApiMember(Description="Dealer Cost Price of the item", IsRequired=true)] public virtual decimal? price { get; set; } } [Route("/price/{brand}", "GET")] public partial class GetPrice : IReturn { public GetPrice() { articleCodes = new List{}; } /// ///Brand /// [ApiMember(Description="Brand", IsRequired=true)] public virtual string brand { get; set; } /// ///POS Legacy /// [ApiMember(Description="POS Legacy", IsRequired=true)] public virtual string posCode { get; set; } /// ///List of Article Codes /// [ApiMember(Description="List of Article Codes", IsRequired=true)] public virtual List articleCodes { get; set; } /// ///Include Dealer Cost Price in the response /// [ApiMember(Description="Include Dealer Cost Price in the response", IsRequired=true)] public virtual bool includeDealerCostPrice { get; set; } } public partial class GetPriceResponse : List { } public partial class Price { /// ///Reference Code of the item /// [ApiMember(Description="Reference Code of the item", IsRequired=true)] public virtual string articleCode { get; set; } /// ///Currency of the price /// [ApiMember(Description="Currency of the price", IsRequired=true)] public virtual string currency { get; set; } /// ///Retail price of the item /// [ApiMember(Description="Retail price of the item")] public virtual decimal retailSalePrice { get; set; } /// ///Code of currency applied /// [ApiMember(Description="Code of currency applied", IsRequired=true)] public virtual string priceListCode { get; set; } /// ///Dealer Cost Price /// [ApiMember(Description="Dealer Cost Price")] public virtual DealerCostPrice dealerCostPrice { get; set; } } }