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