/* Options: Date: 2026-05-19 10:46:05 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: GetUserAuth.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/user/{userId}/authorize", Verbs="GET") open class GetUserAuth : IReturn { /** * User's UserID */ @ApiMember(Description="User's UserID", IsRequired=true) var userId:String? = null companion object { private val responseType = GetUserAuthResponse::class.java } override fun getResponseType(): Any? = GetUserAuth.responseType } open class GetUserAuthResponse : ArrayList() { } open class Auth { /** * Brand Trigram */ @ApiMember(Description="Brand Trigram", IsRequired=true) var brand:String? = null /** * List of Pos Group - in case of internal user */ @ApiMember(Description="List of Pos Group - in case of internal user") var posGroups:ArrayList = ArrayList() /** * Pos Code - in case of external users */ @ApiMember(Description="Pos Code - in case of external users") var posCode:String? = null /** * List of user roles */ @ApiMember(Description="List of user roles", IsRequired=true) var roles:ArrayList = ArrayList() }