(* Options: Date: 2026-05-19 09:52:16 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetPrice.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Richemont.Booster2.PublicApi.MasterFile.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type DealerCostPrice() = /// ///Currency of the Dealer Cost Price /// [] member val currency:String = null with get,set /// ///Dealer Cost Price of the item /// [] member val price:Nullable = new Nullable() with get,set [] type Price() = /// ///Reference Code of the item /// [] member val articleCode:String = null with get,set /// ///Currency of the price /// [] member val currency:String = null with get,set /// ///Retail price of the item /// [] member val retailSalePrice:Decimal = new Decimal() with get,set /// ///Code of currency applied /// [] member val priceListCode:String = null with get,set /// ///Dealer Cost Price /// [] member val dealerCostPrice:DealerCostPrice = null with get,set [] type GetPriceResponse() = inherit ResizeArray() [] [] type GetPrice() = interface IReturn /// ///Brand /// [] member val brand:String = null with get,set /// ///POS Legacy /// [] member val posCode:String = null with get,set /// ///List of Article Codes /// [] member val articleCodes:ResizeArray = new ResizeArray() with get,set /// ///Include Dealer Cost Price in the response /// [] member val includeDealerCostPrice:Boolean = new Boolean() with get,set