(* Options: Date: 2026-05-19 09:51:56 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: GetPosBrand.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Richemont.Booster2.PublicApi.Common.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type IPagedRequest = abstract page:Int32 with get,set abstract items:Int32 with get,set abstract noCount:Boolean with get,set abstract sortBy:String with get,set [] 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 PosBrand() = inherit Scope() /// ///Pos code /// [] member val posCode:String = null with get,set /// ///Pos name /// [] member val name:String = null with get,set /// ///Pos city /// [] member val city:String = null with get,set /// ///Pos address /// [] member val address:String = null with get,set /// ///Pos country /// [] member val country:String = null with get,set [] type GetPosBrandResponse() = /// ///Index of the result set returnedr /// [] member val page:Int32 = new Int32() with get,set /// ///Size of the result set returned /// [] member val items:Int32 = new Int32() with get,set /// ///Total amount of pages / result sets /// [] member val totalPages:Int32 = new Int32() with get,set /// ///Total amount of results /// [] member val totalResults:Int32 = new Int32() with get,set /// ///List of Users /// [] member val elements:IEnumerable = null with get,set [] [] type GetPosBrand() = interface IReturn /// ///Brand Trigram /// [] member val brand:String = null with get,set /// ///Mnemonic Code to Check /// [] member val mnemonicCode:String = null with get,set /// ///Business Unit Code /// [] member val buCode:String = null with get,set /// ///Index of the result set returned /// [] member val page:Int32 = new Int32() with get,set /// ///Size of the result set returned /// [] member val items:Int32 = new Int32() with get,set /// ///Omit precise record count - save on performance /// [] member val noCount:Boolean = new Boolean() with get,set /// ///Sorting expression /// [] member val sortBy:String = null with get,set