(* Options: Date: 2026-08-27 07:10:29 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: TransferStockBulk.* //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 Item() = /// ///Article Code of the item to be transferred /// [] member val articleCode:String = null with get,set /// ///Quantity of the the item to be transferred /// [] member val quantity:Int32 = new Int32() with get,set /// ///Serial Numbers of the item to be transferred /// [] member val serialNumbers:ResizeArray = null with get,set [] type ItemResponse() = /// ///Article Code of the item response /// [] member val articleCode:String = null with get,set /// ///Status of Stock Transfer: 1 means done, 2 means might take a while because consignment transfers need to be approved by SAP /// [] member val stockTransferStatusId:Int32 = new Int32() with get,set /// ///Errors of items /// [] member val errors:ResizeArray> = null with get,set [] type TransferStockBulkResponse() = /// ///Response of items /// [] member val items:ResizeArray = null with get,set [] [] type TransferStockBulk() = interface IReturn /// ///Brand Trigram /// [] member val brand:String = null with get,set /// ///POS of the stock origin /// [] member val posCodeOrigin:String = null with get,set /// ///POS of the stock destination /// [] member val posCodeDestination:String = null with get,set /// ///Items to be transferred /// [] member val items:ResizeArray = null with get,set