/* Options: Date: 2026-05-19 09:52:00 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetPosGroup.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class Scope { /** @description Scope Code - combination of BU / Brand */ // @ApiMember(Description="Scope Code - combination of BU / Brand", IsRequired=true) public scopeCode: string; /** @description Business Unit Code */ // @ApiMember(Description="Business Unit Code", IsRequired=true) public buCode: string; /** @description Brand Trigram */ // @ApiMember(Description="Brand Trigram", IsRequired=true) public brand: string; /** @description Description of the combination */ // @ApiMember(Description="Description of the combination", IsRequired=true) public description: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class PosGroup extends Scope { /** @description Pos Group code */ // @ApiMember(Description="Pos Group code", IsRequired=true) public posGroupCode: number; /** @description Pos Group Description */ // @ApiMember(Description="Pos Group Description", IsRequired=true) public posGroupDs: string; /** @description Define if user is authorized to this pos group */ // @ApiMember(Description="Define if user is authorized to this pos group", IsRequired=true) public isAuthorized: boolean; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class GetPosGroupResponse extends Array { public constructor(init?: Partial) { super(); (Object as any).assign(this, init); } } // @Route("/posGroups", "GET") export class GetPosGroup implements IReturn { /** @description Brand Trigram */ // @ApiMember(Description="Brand Trigram", IsRequired=true) public brand: string; /** @description Business Unit Code */ // @ApiMember(Description="Business Unit Code", IsRequired=true) public buCode: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetPosGroup'; } public getMethod() { return 'GET'; } public createResponse() { return new GetPosGroupResponse(); } }