(* Options: Date: 2026-06-22 21:40:07 Version: 10.06 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w2.api.bettor.cc //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ConfigureRecentWins.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Six4Win.WebApi.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type RecentWinsDisplayMode = | Queue = 0 | Intervals = 1 [] type WinInterval() = member val Start:Decimal = new Decimal() with get,set member val End:Decimal = new Decimal() with get,set member val Duration:TimeSpan = new TimeSpan() with get,set [] type RecentWinsConfiguration() = member val DisplayMode:RecentWinsDisplayMode = new RecentWinsDisplayMode() with get,set member val Threshold:Decimal = new Decimal() with get,set member val MaxSize:Int32 = new Int32() with get,set member val WinIntervals:RecordList = null with get,set [] type RecordList() = inherit ResizeArray() type ResponseStatus = | Failure = 0 | Success = 1 [] [] type ConfigureRecentWins() = interface IReturn member val Id:String = null with get,set member val Configuration:RecentWinsConfiguration = null with get,set