/* Options: Date: 2026-08-27 07:59:37 Version: 10.08 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: GetSalesReps.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturn { createResponse(): T; } export class SalesRep { /** @description The first name of the sales representative. */ // @ApiMember(Description="The first name of the sales representative.", IsRequired=true) public firstName: string; /** @description The last name of the sales representative. */ // @ApiMember(Description="The last name of the sales representative.", IsRequired=true) public lastName: string; /** @description The email address of the sales representative. */ // @ApiMember(Description="The email address of the sales representative.", IsRequired=true) public email: string; /** @description The unique user ID of the sales representative. */ // @ApiMember(Description="The unique user ID of the sales representative.", IsRequired=true) public userId: string; /** @description Whether the sales representative's account is locked. */ // @ApiMember(Description="Whether the sales representative's account is locked.", IsRequired=true) public accountLocked: boolean; /** @description Whether the sales representative's account is pinned. */ // @ApiMember(Description="Whether the sales representative's account is pinned.", IsRequired=true) public isPinned: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetSalesRepsResponse extends Array { public constructor(init?: Partial) { super(); (Object as any).assign(this, init); } } // @Route("/salesReps/{brand}/{posCode}", "GET") export class GetSalesReps implements IReturn { /** @description Brand Triagram, e.g. CAR, IWC, VAC */ // @ApiMember(Description="Brand Triagram, e.g. CAR, IWC, VAC", IsRequired=true) public brand: string; /** @description Point of Sale Code, e.g. ES100:102048 */ // @ApiMember(Description="Point of Sale Code, e.g. ES100:102048", IsRequired=true) public posCode: string; /** @description Booster Customer Id */ // @ApiMember(Description="Booster Customer Id") public boosterCustomerId?: number; /** @description Whether the sales representative's account is locked. */ // @ApiMember(Description="Whether the sales representative's account is locked.") public accountLocked?: boolean; /** @description Whether the sales representative's account is pinned. */ // @ApiMember(Description="Whether the sales representative's account is pinned.") public isPinned?: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetSalesReps'; } public getMethod() { return 'GET'; } public createResponse() { return new GetSalesRepsResponse(); } }