(* Options: Date: 2026-05-19 10:58:12 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: GetWarehouseStock.* //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 WarehouseStockElement() = /// ///Article Code /// [] member val articleCode:String = null with get,set /// ///Current Stock Quantity /// [] member val atpQuantity:Int32 = new Int32() with get,set [] type GetWarehouseStockResponse() = /// ///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 GetWarehouseStock() = interface IReturn /// ///Brand /// [] member val brand:String = null with get,set /// ///POS Legacy /// [] member val posCode:String = null with get,set /// ///List of Article Codes /// [] member val articleCodes:ResizeArray = new ResizeArray() 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