(* Options: Date: 2026-08-27 07:10:50 Version: 10.08 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: GetStockPaginated.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Richemont.Booster2.PublicApi.Common.ServiceModel open System open System.IO 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 RetailSalesPrice() = /// ///Currency Iso Code /// [] member val currencyIsoCode:String = null with get,set /// ///Value /// [] member val value:Nullable = new Nullable() with get,set [] type StorageLocation() = /// ///Storage Location Identifier /// [] member val storageLocationId:String = null with get,set /// ///Storage Location Description /// [] member val storageLocationDs:String = null with get,set [] type PaginatedStockElement() = /// ///Pos Code /// [] member val posCode:String = null with get,set /// ///Pos Code To Be Displayed /// [] member val posCodeToBeDisplayed:String = null with get,set /// ///Article Code /// [] member val articleCode:String = null with get,set /// ///Serial Number /// [] member val serialNumber:String = null with get,set /// ///Current Stock Quantity /// [] member val quantity:Int32 = new Int32() with get,set /// ///Type e.g. consignment or standard /// [] member val type:String = null with get,set /// ///Is Consignment Sellable /// [] member val isConsignmentSellable:Boolean = new Boolean() with get,set /// ///Retail Sales Price /// [] member val retailSalesPrice:RetailSalesPrice = null with get,set /// ///Storage Location /// [] member val storageLocation:StorageLocation = null with get,set [] type GetStockPaginatedResponse() = /// ///Total Pages /// [] member val totalPages:Int32 = new Int32() with get,set /// ///Total Results /// [] member val totalResults:Int32 = new Int32() 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 /// ///List of movements /// [] member val elements:IEnumerable = null with get,set [] [] type GetStockPaginated() = interface IReturn /// ///Brand /// [] member val brand:String = null with get,set /// ///POS Legacy /// [] member val posCode:String = null with get,set /// ///Search Key (Article or SerialNumber) /// [] member val searchKey: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 /// ///Parameter - Include Chain POSes Stock /// [] member val includeChainPosesStock:Boolean = new Boolean() with get,set /// ///Include Retail Sales Price in the Output, by default: false /// [] member val includeRSP:Boolean = new Boolean() with get,set /// ///Storage Location Identifier e.g. CPO, NEW, REP /// [] member val storageLocationId:String = null with get,set /// ///Inventory segment e.g. CPO or null /// [] member val inventorySegment:String = null with get,set