(* Options: Date: 2026-08-27 07:59:41 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: GetStockSlim.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Richemont.Booster2.PublicApi.Stock.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type GetStockSlimResponse() = /// ///Total Product Count /// [] member val totalProductCount:Int32 = new Int32() with get,set /// ///Total Consignment Count /// [] member val totalConsignmentCount:Int32 = new Int32() with get,set /// ///Articles /// [] member val elements:ResizeArray = null with get,set [] [] type GetStockSlim() = interface IReturn /// ///Brand /// [] member val brand:String = null with get,set /// ///POS Legacy /// [] member val posCodes:ResizeArray = null with get,set /// ///Article Codes /// [] member val articleCodes:ResizeArray = null with get,set /// ///Cluster Id /// [] member val clusterIds:ResizeArray = null with get,set /// ///Include Extra Info /// [] member val includeExtraInfo:Boolean = new Boolean() with get,set /// ///Include Consignment NotAuthorized POS /// [] member val includeConsignmentNotAuthorizedPOS:Boolean = new Boolean() with get,set /// ///Item type, 'standard' OR 'consigned'. By default, all are coming /// [] member val type:String = null 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