(* Options: Date: 2026-05-19 09:48:53 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: CreateTransferRequest.* //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 CreateTransferRequest() = /// ///Brand Trigram, e.g. CAR, IWC /// [] member val brand:String = null with get,set /// ///POS Code of the transfer Source POS, e.g. ES100:102048 /// [] member val posCodeFrom:String = null with get,set /// ///POS Code of the transfer Target POS, e.g. ES100:101469 /// [] member val posCodeTo:String = null with get,set /// ///Legacy Article Code of the item to be transferred /// [] member val articleCode:String = null with get,set /// ///Notes /// [] member val notes:String = null with get,set