/* Options: Date: 2026-05-19 09:52:43 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: GetPosBrand.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IPagedRequest { page: number; items: number; noCount: boolean; sortBy: string; } 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 PosBrand extends Scope { /** @description Pos code */ // @ApiMember(Description="Pos code", IsRequired=true) public posCode: string; /** @description Pos name */ // @ApiMember(Description="Pos name", IsRequired=true) public name: string; /** @description Pos city */ // @ApiMember(Description="Pos city", IsRequired=true) public city: string; /** @description Pos address */ // @ApiMember(Description="Pos address", IsRequired=true) public address: string; /** @description Pos country */ // @ApiMember(Description="Pos country", IsRequired=true) public country: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class GetPosBrandResponse { /** @description Index of the result set returnedr */ // @ApiMember(Description="Index of the result set returnedr", IsRequired=true) public page: number; /** @description Size of the result set returned */ // @ApiMember(Description="Size of the result set returned", IsRequired=true) public items: number; /** @description Total amount of pages / result sets */ // @ApiMember(Description="Total amount of pages / result sets", IsRequired=true) public totalPages: number; /** @description Total amount of results */ // @ApiMember(Description="Total amount of results", IsRequired=true) public totalResults: number; /** @description List of Users */ // @ApiMember(Description="List of Users", IsRequired=true) public elements: PosBrand[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/security/pos", "GET") export class GetPosBrand implements IReturn, IPagedRequest { /** @description Brand Trigram */ // @ApiMember(Description="Brand Trigram", IsRequired=true) public brand: string; /** @description Mnemonic Code to Check */ // @ApiMember(Description="Mnemonic Code to Check") public mnemonicCode: string; /** @description Business Unit Code */ // @ApiMember(Description="Business Unit Code") public buCode: string; /** @description Index of the result set returned */ // @ApiMember(Description="Index of the result set returned", IsRequired=true) public page: number; /** @description Size of the result set returned */ // @ApiMember(Description="Size of the result set returned", IsRequired=true) public items: number; /** @description Omit precise record count - save on performance */ // @ApiMember(Description="Omit precise record count - save on performance") public noCount: boolean; /** @description Sorting expression */ // @ApiMember(Description="Sorting expression") public sortBy: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetPosBrand'; } public getMethod() { return 'GET'; } public createResponse() { return new GetPosBrandResponse(); } }