(* Options: Date: 2025-12-06 05:24:44 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.sbbet.ath.cx //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: SettleBet.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Betting.WebApi.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type BetOutcome = | Unknown = 0 | Lost = 1 | Won = 2 | Void = 3 [] [] type SettleBet() = interface IReturn member val Id:String = null with get,set member val BetId:String = null with get,set member val Outcome:BetOutcome = new BetOutcome() with get,set member val Winnings:Decimal = new Decimal() with get,set member val Results:Dictionary = null with get,set