(* Options: Date: 2026-08-27 07:10:23 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: AcceptDelivery.* //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 AcceptDeliveryNoteItem() = /// ///Delivery Notes Number, e.g. 7040123456 /// [] member val deliveryNotesNumber:Int64 = new Int64() with get,set /// ///Delivery Notes Date, e.g. 2022-10-10 /// [] member val deliveryNotesDate:DateTime = new DateTime() with get,set /// ///Delivery Notes Line Number (DeliveryNotesNoSplit), e.g. 10 /// [] member val deliveryNotesLineNumber:Int32 = new Int32() with get,set [] type AcceptDeliveryResponse() = class end [] [] type AcceptDelivery() = interface IReturn /// ///Brand /// [] member val brand:String = null with get,set /// ///Pos Legacy Code with Legacy System ID, e.g. ES123:123456 /// [] member val posCode:String = null with get,set /// ///Received deliveries /// [] member val deliveryNotes:ResizeArray = null with get,set