(* Options: Date: 2025-12-06 05:22:55 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: GetUserNotifications.* //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 RecordDictionary() = inherit Dictionary() type Severity = | Success = 0 | Info = 1 | Warning = 2 | Error = 3 type NotificationType = | Default = 0 | SlipDeliveryConfirmationRequest = 1 | SlipDeliveryIssueResolved = 2 [] type Notification() = member val Severity:Severity = new Severity() with get,set member val Type:NotificationType = new NotificationType() with get,set member val Data:RecordDictionary = null with get,set [] type UserNotification() = member val Id:String = null with get,set member val Notification:Notification = null with get,set member val DispatchedAt:DateTime = new DateTime() with get,set [] type UserNotifications() = member val Id:String = null with get,set member val N:Int32 = new Int32() with get,set member val S:Int32 = new Int32() with get,set member val I:Int32 = new Int32() with get,set member val W:Int32 = new Int32() with get,set member val E:Int32 = new Int32() with get,set member val Notifications:Dictionary = null with get,set [] [] type GetUserNotifications() = interface IReturn member val Id:String = null with get,set