(* Options: Date: 2026-05-19 09:51:49 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: GetStockSlim.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Richemont.Booster2.PublicApi.Stock.ServiceModel open System 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 = new ResizeArray() with get,set [] [] type GetStockSlim() = interface IReturn /// ///Brand /// [] member val brand:String = null with get,set /// ///POS Legacy /// [] member val posCodes:ResizeArray = new ResizeArray() with get,set /// ///Article Codes /// [] member val articleCodes:ResizeArray = new ResizeArray() with get,set /// ///Cluster Id /// [] member val clusterIds:ResizeArray = new ResizeArray() 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