/* Options:
Date: 2026-05-19 09:51:49
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: GetCatalog.*
//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.Purchase.ServiceModel;
namespace Richemont.Booster2.PublicApi.Purchase.ServiceModel
{
public partial class Article
{
///
///Reference ID / Code of the Article
///
[ApiMember(Description="Reference ID / Code of the Article", IsRequired=true)]
public virtual string articleCode { get; set; }
///
///Price of the article
///
[ApiMember(Description="Price of the article", IsRequired=true)]
public virtual decimal price { get; set; }
///
///Currency of the price of the article
///
[ApiMember(Description="Currency of the price of the article", IsRequired=true)]
public virtual string currency { get; set; }
}
[Route("/purchase/catalog", "GET")]
public partial class GetCatalog
: IReturn
{
///
///POS Legacy
///
[ApiMember(Description="POS Legacy", IsRequired=true)]
public virtual string posCode { get; set; }
///
///Brand Trigram of the POS
///
[ApiMember(Description="Brand Trigram of the POS", IsRequired=true)]
public virtual string brand { get; set; }
}
public partial class GetCatalogResponse
{
public virtual IEnumerable articles { get; set; }
}
}