(* Options: Date: 2026-05-19 09:52:06 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: ExtendSellOut.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Richemont.Booster2.PublicApi.Sellout.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type Status() = /// ///Unique Identifier of the Sell-out created in Booster /// [] member val id:String = null with get,set /// ///Unique Identifier of the Sell-out created in Booster /// [] member val description:String = null with get,set [] type StatusWarrantyExtension() = inherit Status() /// ///Information about if a warranty can be retriggered /// [] member val retriggerEnabled:Boolean = new Boolean() with get,set [] type ExtendSellOutResponse() = /// ///ccp substatus information /// [] member val ccpStatus:StatusWarrantyExtension = null with get,set /// ///ccp main status information /// [] member val boosterStatus:Status = null with get,set [] [] type ExtendSellOut() = interface IReturn /// ///Unique Identifier of the Sell-out created in Booster /// [] member val saleDetailId:Int32 = new Int32() with get,set