/* Options: Date: 2026-05-19 09:48:41 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetUserScope.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/authScopes", Verbs="GET") public static class GetUserScope implements IReturn { private static Object responseType = GetUserScopeResponse.class; public Object getResponseType() { return responseType; } } public static class GetUserScopeResponse extends ArrayList { } public static class Scope { /** * Scope Code - combination of BU / Brand */ @ApiMember(Description="Scope Code - combination of BU / Brand", IsRequired=true) public String scopeCode = null; /** * Business Unit Code */ @ApiMember(Description="Business Unit Code", IsRequired=true) public String buCode = null; /** * Brand Trigram */ @ApiMember(Description="Brand Trigram", IsRequired=true) public String brand = null; /** * Description of the combination */ @ApiMember(Description="Description of the combination", IsRequired=true) public String description = null; public String getScopeCode() { return scopeCode; } public Scope setScopeCode(String value) { this.scopeCode = value; return this; } public String getBuCode() { return buCode; } public Scope setBuCode(String value) { this.buCode = value; return this; } public String getBrand() { return brand; } public Scope setBrand(String value) { this.brand = value; return this; } public String getDescription() { return description; } public Scope setDescription(String value) { this.description = value; return this; } } }