/* Options: Date: 2026-08-27 07:10:45 Version: 10.08 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: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream 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) open var scopeCode:String? = null /** * Business Unit Code */ @ApiMember(Description="Business Unit Code", IsRequired=true) open var buCode:String? = null /** * Brand Trigram */ @ApiMember(Description="Brand Trigram", IsRequired=true) open var brand:String? = null /** * Description of the combination */ @ApiMember(Description="Description of the combination", IsRequired=true) open var description:String? = null }