/* Options: Date: 2026-05-19 10:58:40 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: GetProductCollections.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class ProductCollection { /** @description Product Collection description */ // @ApiMember(Description="Product Collection description", IsRequired=true) public productCollection: string; /** @description SAP ProductCollection ID, e.g. 'CA-1' */ // @ApiMember(Description="SAP ProductCollection ID, e.g. 'CA-1'", IsRequired=true) public sapProductCollectionId: string; /** @description Product Collection description translation */ // @ApiMember(Description="Product Collection description translation", IsRequired=true) public translation: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetProductCollectionsResponse extends Array { public constructor(init?: Partial) { super(); (Object as any).assign(this, init); } } // @Route("/product-collection/{brand}/{posCode}", "GET") export class GetProductCollections implements IReturn { /** @description Brand */ // @ApiMember(Description="Brand", IsRequired=true) public brand: string; /** @description POS Legacy */ // @ApiMember(Description="POS Legacy", IsRequired=true) public posCode: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetProductCollections'; } public getMethod() { return 'GET'; } public createResponse() { return new GetProductCollectionsResponse(); } }