/* Options: Date: 2026-05-19 09:52:42 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetCatalog.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class Article { /** @description Reference ID / Code of the Article */ // @ApiMember(Description="Reference ID / Code of the Article", IsRequired=true) public articleCode: string; /** @description Price of the article */ // @ApiMember(Description="Price of the article", IsRequired=true) public price: number; /** @description Currency of the price of the article */ // @ApiMember(Description="Currency of the price of the article", IsRequired=true) public currency: string; public constructor(init?: Partial
) { (Object as any).assign(this, init); } } export class GetCatalogResponse { public articles: Article[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/purchase/catalog", "GET") export class GetCatalog implements IReturn { /** @description POS Legacy */ // @ApiMember(Description="POS Legacy", IsRequired=true) public posCode: string; /** @description Brand Trigram of the POS */ // @ApiMember(Description="Brand Trigram of the POS", IsRequired=true) public brand: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetCatalog'; } public getMethod() { return 'GET'; } public createResponse() { return new GetCatalogResponse(); } }