(* Options: Date: 2026-05-19 09:51:57 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: GetPurchasablePos.* //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 Pos() = /// ///POS Code /// [] member val posCode:String = null with get,set /// ///Name of the POS /// [] member val name:String = null with get,set /// ///City of the POS /// [] member val city:String = null with get,set /// ///Address of the POS /// [] member val address:String = null with get,set /// ///Country of the POS /// [] member val country:String = null with get,set /// ///Brand of the POS /// [] member val brand:String = null with get,set [] type Pos() = /// ///Name of the POS /// [] member val name:String = null with get,set /// ///POS Code /// [] member val posCode:String = null with get,set /// ///Pos Code To Be Displayed /// [] member val posCodeToBeDisplayed:String = null with get,set /// ///Country of the POS /// [] member val country:String = null with get,set /// ///City of the POS /// [] member val city:String = null with get,set /// ///Postal Code /// [] member val postalCode:String = null with get,set /// ///State /// [] member val state:String = null with get,set /// ///Street /// [] member val street:String = null with get,set [] type GetPurchasablePosResponse() = /// ///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 Pos /// [] member val elements:IEnumerable = null with get,set [] [] type GetPurchasablePos() = interface IReturn /// ///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 /// ///Brand Trigram /// [] member val brand:String = null with get,set /// ///Brand Context ID /// [] member val boosterContextId:String = null with get,set