/* Options: Date: 2026-05-19 09:51:57 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: GetPromoterType.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class PromoterTypeItem { /** @description Code of Promoter Type */ // @ApiMember(Description="Code of Promoter Type", IsRequired=true) public code: string; /** @description Description of Promoter Type */ // @ApiMember(Description="Description of Promoter Type", IsRequired=true) public description: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetPromoterTypeResponse extends Array { public constructor(init?: Partial) { super(); (Object as any).assign(this, init); } } // @Route("/warranty/promotertype", "GET") export class GetPromoterType implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetPromoterType'; } public getMethod() { return 'GET'; } public createResponse() { return new GetPromoterTypeResponse(); } }