/* Options: Date: 2026-05-11 11:15:52 Version: 10.06 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w1.api.bettor.webhop.biz //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: True //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: GetFeed.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Starnet.Common; using Betting.Common; using Six4Win; using Six4Win.ReadModel; using Six4Win.WebApi.ServiceModel; namespace Betting.Common { public partial class BettingApp { public virtual string? Name { get; set; } public virtual string? Version { get; set; } } public partial class Origin { public virtual BettingApp? Application { get; set; } public virtual string? IP { get; set; } public virtual RefEx? Organization { get; set; } public virtual Ref? Region { get; set; } public virtual Ref? LocationGroup { get; set; } public virtual RefEx? Location { get; set; } public virtual RefEx? Device { get; set; } public virtual Ref? Clerk { get; set; } } } namespace Six4Win { public partial class CountdownConfiguration { public virtual int LockdownStepFromEnd { get; set; } public virtual int AssertLockdownStepFromEnd { get; set; } } public partial class DrawConfiguration { public virtual int IntroIntervalInMs { get; set; } public virtual int AnimationIntervalInMs { get; set; } public virtual int OutroIntervalInMs { get; set; } } public partial class GlobalCodePotInfo { public virtual bool IsActive { get; set; } public virtual bool IsDrawn { get; set; } public virtual WinnerByCode? Winner { get; set; } public virtual string? InertCode { get; set; } public virtual decimal Accumulation { get; set; } } public partial class HappyHourConfiguration { public virtual bool IsHappyHour { get; set; } public virtual decimal OddsModifier { get; set; } public virtual decimal RoundPoolBonusPct { get; set; } public virtual bool UseOnlyRoundPoolWithNoOptimizations { get; set; } public virtual bool OverrideSyphonCombinationCountPerRoundThreshold { get; set; } public virtual decimal SyphonCombinationCountPerRoundThresholdPctOverride { get; set; } } public partial class Jackpot5Info { public virtual bool IsHit { get; set; } public virtual decimal AmountAccumulated { get; set; } public virtual decimal AmountAwarded { get; set; } public virtual int NrOfWinners { get; set; } public virtual List? JackPot5Winners { get; set; } } public partial class JackPot5Winner { public virtual string? BetId { get; set; } public virtual int NrOfCombinations { get; set; } public virtual decimal WinningsAmount { get; set; } public virtual Origin? Origin { get; set; } public virtual Ref? Bettor { get; set; } public virtual Dictionary? Payload { get; set; } } public partial class RoundConfiguration { public virtual RecordList? Coefficients { get; set; } public virtual bool IsDoubleTripleActive { get; set; } public virtual bool IsJackpot5Active { get; set; } public virtual int CountdownDurationInSeconds { get; set; } public virtual CountdownConfiguration? CountdownConfiguration { get; set; } public virtual DrawConfiguration? DrawConfiguration { get; set; } public virtual int ResultsDurationInSeconds { get; set; } public virtual RTPStrategies RTPStrategy { get; set; } public virtual HappyHourConfiguration? HappyHourConfiguration { get; set; } } public enum RoundStatus { Pending = 0, InProgress = 1, Ended = 2, } public enum RTPStrategies { RNG = 0, Accumulator = 1, } public enum Stages { None = 0, Countdown = 1, Processing = 2, Draw = 3, Results = 4, } public partial class SuperWinInfo { public virtual bool IsActive { get; set; } public virtual SuperWinWinner? Winner { get; set; } public virtual decimal AvailableAmount { get; set; } public virtual bool AllPrizesAwarded { get; set; } } public partial class WinnerByCode { public virtual string? RoundId { get; set; } public virtual DateTime DrawnAtUtc { get; set; } public virtual string? SlipId { get; set; } public virtual string? BetId { get; set; } public virtual string? Code { get; set; } public virtual decimal Amount { get; set; } public virtual Origin? Origin { get; set; } public virtual Ref? Bettor { get; set; } public virtual string? LocationAddressOrBettorInfo { get; set; } } } namespace Six4Win.ReadModel { public partial class Feed { public virtual string? Id { get; set; } public virtual Round? Round { get; set; } public virtual Jackpot5Info? LastJackpot5Info { get; set; } public virtual SuperWinInfo? SuperWinInfo { get; set; } public virtual GlobalCodePotInfo? GlobalCodePotInfo { get; set; } } public partial class Round { public virtual string? Id { get; set; } public virtual DateTime CreatedAt { get; set; } public virtual DateTime UpdatedAt { get; set; } public virtual DateTime ShouldStartAtUtc { get; set; } public virtual DateTime StartedAtUtc { get; set; } public virtual RoundStatus Status { get; set; } public virtual RoundConfiguration? Configuration { get; set; } public virtual string? Sequence { get; set; } public virtual Jackpot5Info? Jackpot5Info { get; set; } public virtual SuperWinInfo? SuperWinInfo { get; set; } public virtual GlobalCodePotInfo? GlobalCodePotInfo { get; set; } public virtual RoundProgress? Progress { get; set; } public virtual bool IsLocked { get; set; } public virtual bool IsCalculated { get; set; } public partial class RoundProgress { public virtual Stages Stage { get; set; } public virtual int Step { get; set; } public virtual int Steps { get; set; } public virtual DateTime UTCTimestamp { get; set; } } } } namespace Six4Win.WebApi.ServiceModel { [Route("/qry/feed")] public partial class GetFeed : IReturn { } } namespace Starnet.Common { public partial class RecordDictionary : Dictionary { } public partial class RecordList : List { } public partial class Ref { public virtual string Id { get; set; } public virtual string Val { get; set; } } public partial class RefEx : Ref { public virtual RecordDictionary Data { get; set; } } }