(* Options: Date: 2026-05-19 09:51:16 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetPosGroup.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Richemont.Booster2.PublicApi.Security.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type Scope() = /// ///Scope Code - combination of BU / Brand /// [] member val scopeCode:String = null with get,set /// ///Business Unit Code /// [] member val buCode:String = null with get,set /// ///Brand Trigram /// [] member val brand:String = null with get,set /// ///Description of the combination /// [] member val description:String = null with get,set [] type PosGroup() = inherit Scope() /// ///Pos Group code /// [] member val posGroupCode:Int32 = new Int32() with get,set /// ///Pos Group Description /// [] member val posGroupDs:String = null with get,set /// ///Define if user is authorized to this pos group /// [] member val isAuthorized:Boolean = new Boolean() with get,set [] type GetPosGroupResponse() = inherit ResizeArray() [] [] type GetPosGroup() = interface IReturn /// ///Brand Trigram /// [] member val brand:String = null with get,set /// ///Business Unit Code /// [] member val buCode:String = null with get,set