(* Options: Date: 2026-06-30 15:39:43 Version: 10.06 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w1.api.redq.ath.cx //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetRecentWinsConfig.* //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 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() = inherit RecentWinsConfiguration() member val Id:String = null with get,set [] type RecentWinsConfiguration() = member val MaxSize:Int32 = new Int32() with get,set member val WinIntervals:RecordList = null with get,set [] type RecordList() = inherit ResizeArray() [] [] type GetRecentWinsConfig() = interface IReturn