(* Options: Date: 2026-05-19 09:52:14 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: ExportStock.* //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 ProductCategory() = /// ///Brand Category ID /// [] member val brandCategoryId:String = null with get,set /// ///Grand Category ID /// [] member val grandCategoryId:String = null with get,set /// ///Master Category ID /// [] member val masterCategoryId:String = null with get,set /// ///Category ID /// [] member val categoryId:String = null with get,set /// ///Sub Category ID /// [] member val subCategoryId:String = null with get,set [] type StockRequest() = /// ///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 /// ///Include Extra Info /// [] member val includeExtraInfo:Boolean = new Boolean() with get,set /// ///Cluster Id /// [] member val clusterIds:ResizeArray = new ResizeArray() with get,set /// ///Include Consignment NotAuthorized POS /// [] member val includeConsignmentNotAuthorizedPOS: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 /// ///In Stock Since date from /// [] member val dateFrom:Nullable = new Nullable() with get,set /// ///In Stock Since date to /// [] member val dateTo:Nullable = new Nullable() with get,set /// ///Item type, 'standard' OR 'consigned'. By default, all are coming /// [] member val type:String = null with get,set [] type ProductCategory() = /// ///Brand Category ID /// [] member val brandCategoryId:String = null with get,set /// ///Grand Category ID /// [] member val grandCategoryId:String = null with get,set /// ///Master Category ID /// [] member val masterCategoryId:String = null with get,set /// ///Category ID /// [] member val categoryId:String = null with get,set /// ///Sub Category ID /// [] member val subCategoryId:String = null with get,set [] type ExportStockResponse() = /// ///Unique Identifier of the Export Request created /// [] member val asyncTaskId:Guid = new Guid() with get,set [] [] type ExportStock() = inherit StockRequest() interface IReturn /// ///Product Categories /// [] member val productCategories:ResizeArray = new ResizeArray() with get,set /// ///Export Request ID of the API Consumers /// [] member val downloadRequestId:String = null with get,set