/* Options: Date: 2026-05-19 10:45:30 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: GetUserAuth.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class Auth { /** @description Brand Trigram */ // @ApiMember(Description="Brand Trigram", IsRequired=true) public brand: string; /** @description List of Pos Group - in case of internal user */ // @ApiMember(Description="List of Pos Group - in case of internal user") public posGroups: number[]; /** @description Pos Code - in case of external users */ // @ApiMember(Description="Pos Code - in case of external users") public posCode: string; /** @description List of user roles */ // @ApiMember(Description="List of user roles", IsRequired=true) public roles: string[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetUserAuthResponse extends Array { public constructor(init?: Partial) { super(); (Object as any).assign(this, init); } } // @Route("/user/{userId}/authorize", "GET") export class GetUserAuth implements IReturn { /** @description User's UserID */ // @ApiMember(Description="User's UserID", IsRequired=true) public userId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetUserAuth'; } public getMethod() { return 'GET'; } public createResponse() { return new GetUserAuthResponse(); } }