/* Options: Date: 2026-08-27 08:00:37 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: GetPosGroup.* //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="/posGroups", Verbs="GET") open class GetPosGroup : IReturn { /** * Brand Trigram */ @ApiMember(Description="Brand Trigram", IsRequired=true) open var brand:String? = null /** * Business Unit Code */ @ApiMember(Description="Business Unit Code", IsRequired=true) open 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) 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 } open class PosGroup : Scope() { /** * Pos Group code */ @ApiMember(Description="Pos Group code", IsRequired=true) open var posGroupCode:Int? = null /** * Pos Group Description */ @ApiMember(Description="Pos Group Description", IsRequired=true) open 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) open var isAuthorized:Boolean? = null }