/* Options: Date: 2026-05-19 09:51:53 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: GetPrice.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class DealerCostPrice { /** @description Currency of the Dealer Cost Price */ // @ApiMember(Description="Currency of the Dealer Cost Price", IsRequired=true) public currency: string; /** @description Dealer Cost Price of the item */ // @ApiMember(Description="Dealer Cost Price of the item", IsRequired=true) public price: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class Price { /** @description Reference Code of the item */ // @ApiMember(Description="Reference Code of the item", IsRequired=true) public articleCode: string; /** @description Currency of the price */ // @ApiMember(Description="Currency of the price", IsRequired=true) public currency: string; /** @description Retail price of the item */ // @ApiMember(Description="Retail price of the item") public retailSalePrice: number; /** @description Code of currency applied */ // @ApiMember(Description="Code of currency applied", IsRequired=true) public priceListCode: string; /** @description Dealer Cost Price */ // @ApiMember(Description="Dealer Cost Price") public dealerCostPrice: DealerCostPrice; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetPriceResponse extends Array { public constructor(init?: Partial) { super(); (Object as any).assign(this, init); } } // @Route("/price/{brand}", "GET") export class GetPrice implements IReturn { /** @description Brand */ // @ApiMember(Description="Brand", IsRequired=true) public brand: string; /** @description POS Legacy */ // @ApiMember(Description="POS Legacy", IsRequired=true) public posCode: string; /** @description List of Article Codes */ // @ApiMember(Description="List of Article Codes", IsRequired=true) public articleCodes: string[]; /** @description Include Dealer Cost Price in the response */ // @ApiMember(Description="Include Dealer Cost Price in the response", IsRequired=true) public includeDealerCostPrice: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetPrice'; } public getMethod() { return 'GET'; } public createResponse() { return new GetPriceResponse(); } }