(* Options: Date: 2026-05-19 09:51:59 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: GetCatalog.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Richemont.Booster2.PublicApi.Purchase.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type Article() = /// ///Reference ID / Code of the Article /// [] member val articleCode:String = null with get,set /// ///Price of the article /// [] member val price:Decimal = new Decimal() with get,set /// ///Currency of the price of the article /// [] member val currency:String = null with get,set [] type GetCatalogResponse() = member val articles:IEnumerable
= null with get,set [] [] type GetCatalog() = interface IReturn /// ///POS Legacy /// [] member val posCode:String = null with get,set /// ///Brand Trigram of the POS /// [] member val brand:String = null with get,set