/* Options: Date: 2026-05-19 09:51:26 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: GetEventTypes.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class EventType { /** @description Booster Event Type */ // @ApiMember(Description="Booster Event Type", IsRequired=true) public eventType: string; /** @description Event type translation */ // @ApiMember(Description="Event type translation", IsRequired=true) public translation: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetEventTypesResponse extends Array { public constructor(init?: Partial) { super(); (Object as any).assign(this, init); } } // @Route("/eventTypes", "GET") export class GetEventTypes implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetEventTypes'; } public getMethod() { return 'GET'; } public createResponse() { return new GetEventTypesResponse(); } }