/* Options: Date: 2026-05-19 09:53:13 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: GetPosGroup.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/posGroups", Verbs="GET") open class GetPosGroup : IReturn { /** * Brand Trigram */ @ApiMember(Description="Brand Trigram", IsRequired=true) var brand:String? = null /** * Business Unit Code */ @ApiMember(Description="Business Unit Code", IsRequired=true) var buCode:String? = null companion object { private val responseType = GetPosGroupResponse::class.java } override fun getResponseType(): Any? = GetPosGroup.responseType } open class GetPosGroupResponse : 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 } open class PosGroup : Scope() { /** * Pos Group code */ @ApiMember(Description="Pos Group code", IsRequired=true) var posGroupCode:Int? = null /** * Pos Group Description */ @ApiMember(Description="Pos Group Description", IsRequired=true) var posGroupDs:String? = null /** * Define if user is authorized to this pos group */ @ApiMember(Description="Define if user is authorized to this pos group", IsRequired=true) var isAuthorized:Boolean? = null }