/* Options: Date: 2026-05-19 09:51:11 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: GetPosGroup.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Richemont.Booster2.PublicApi.Security.ServiceModel; namespace Richemont.Booster2.PublicApi.Security.ServiceModel { [Route("/posGroups", "GET")] public partial class GetPosGroup : IReturn { /// ///Brand Trigram /// [ApiMember(Description="Brand Trigram", IsRequired=true)] public virtual string brand { get; set; } /// ///Business Unit Code /// [ApiMember(Description="Business Unit Code", IsRequired=true)] public virtual string buCode { get; set; } } public partial class GetPosGroupResponse : List { } public partial class PosGroup : Scope { /// ///Pos Group code /// [ApiMember(Description="Pos Group code", IsRequired=true)] public virtual int posGroupCode { get; set; } /// ///Pos Group Description /// [ApiMember(Description="Pos Group Description", IsRequired=true)] public virtual string posGroupDs { get; set; } /// ///Define if user is authorized to this pos group /// [ApiMember(Description="Define if user is authorized to this pos group", IsRequired=true)] public virtual bool isAuthorized { get; set; } } public partial class Scope { /// ///Scope Code - combination of BU / Brand /// [ApiMember(Description="Scope Code - combination of BU / Brand", IsRequired=true)] public virtual string scopeCode { get; set; } /// ///Business Unit Code /// [ApiMember(Description="Business Unit Code", IsRequired=true)] public virtual string buCode { get; set; } /// ///Brand Trigram /// [ApiMember(Description="Brand Trigram", IsRequired=true)] public virtual string brand { get; set; } /// ///Description of the combination /// [ApiMember(Description="Description of the combination", IsRequired=true)] public virtual string description { get; set; } } }