/* Options: Date: 2026-05-19 09:52:14 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: GetUserScope.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class Scope { /** @description Scope Code - combination of BU / Brand */ // @ApiMember(Description="Scope Code - combination of BU / Brand", IsRequired=true) public scopeCode: string; /** @description Business Unit Code */ // @ApiMember(Description="Business Unit Code", IsRequired=true) public buCode: string; /** @description Brand Trigram */ // @ApiMember(Description="Brand Trigram", IsRequired=true) public brand: string; /** @description Description of the combination */ // @ApiMember(Description="Description of the combination", IsRequired=true) public description: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetUserScopeResponse extends Array { public constructor(init?: Partial) { super(); (Object as any).assign(this, init); } } // @Route("/authScopes", "GET") export class GetUserScope implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetUserScope'; } public getMethod() { return 'GET'; } public createResponse() { return new GetUserScopeResponse(); } }