/* Options: Date: 2026-05-19 10:46:15 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetUserScope.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/authScopes", Verbs="GET") open class GetUserScope : IReturn { companion object { private val responseType = GetUserScopeResponse::class.java } override fun getResponseType(): Any? = GetUserScope.responseType } open class GetUserScopeResponse : ArrayList() { } open class Scope { /** * Scope Code - combination of BU / Brand */ @ApiMember(Description="Scope Code - combination of BU / Brand", IsRequired=true) var scopeCode:String? = null /** * Business Unit Code */ @ApiMember(Description="Business Unit Code", IsRequired=true) var buCode:String? = null /** * Brand Trigram */ @ApiMember(Description="Brand Trigram", IsRequired=true) var brand:String? = null /** * Description of the combination */ @ApiMember(Description="Description of the combination", IsRequired=true) var description:String? = null }