/* Options: Date: 2026-05-19 10:58:12 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: GetInterests.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class Interest { /** @description Interest description */ // @ApiMember(Description="Interest description", IsRequired=true) public interest: string; /** @description SAP Interest ID, e.g. 'CA-1' */ // @ApiMember(Description="SAP Interest ID, e.g. 'CA-1'", IsRequired=true) public sapInterestId: string; /** @description Interest description translation */ // @ApiMember(Description="Interest description translation") public translation: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetInterestsResponse extends Array { public constructor(init?: Partial) { super(); (Object as any).assign(this, init); } } // @Route("/interests/{brand}/{posCode}", "GET") export class GetInterests 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 'GetInterests'; } public getMethod() { return 'GET'; } public createResponse() { return new GetInterestsResponse(); } }