/* Options: Date: 2026-05-19 09:51:23 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: GetUserScope.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Richemont.Booster2.PublicApi.Security.ServiceModel; namespace Richemont.Booster2.PublicApi.Security.ServiceModel { [Route("/authScopes", "GET")] public partial class GetUserScope : IReturn { } public partial class GetUserScopeResponse : List { } public partial class Scope { /// ///Scope Code - combination of BU / Brand /// [ApiMember(Description="Scope Code - combination of BU / Brand", IsRequired=true)] public virtual string scopeCode { get; set; } /// ///Business Unit Code /// [ApiMember(Description="Business Unit Code", IsRequired=true)] public virtual string buCode { get; set; } /// ///Brand Trigram /// [ApiMember(Description="Brand Trigram", IsRequired=true)] public virtual string brand { get; set; } /// ///Description of the combination /// [ApiMember(Description="Description of the combination", IsRequired=true)] public virtual string description { get; set; } } }