Six4Win.WebApi

<back to all web services

GetDrawDignostics

The following routes are available for this service:
All Verbs/qry/rounds/draw/diagnostics
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Six4Win.WebApi.ServiceModel;
using Six4Win.ReadModel;
using Starnet.Common;
using Six4Win;
using Betting.Common;
using Six4Win.Common;

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 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.Common
{
    public partial class Syphon
    {
        public virtual string Id { get; set; }
        public virtual string Name { get; set; }
        public virtual SyphonType Type { get; set; }
        public virtual int NrOfCombinations { get; set; }
    }

    public partial class SyphonInfo
    {
        public virtual Dictionary<string, Syphon> Bettors { get; set; }
        public virtual Dictionary<string, Syphon> Locations { get; set; }
        public virtual bool HasSyphons { get; set; }
        public virtual int TotalSyphonsInRound { get; set; }
    }

    public enum SyphonType
    {
        Location = 0,
        Bettor = 1,
    }

}

namespace Six4Win.ReadModel
{
    public partial class AccumulatorConfiguration
        : AccumulatorConfiguration
    {
        public virtual string Id { get; set; }
        public virtual DateTime UpdatedAt { get; set; }
    }

    public partial class DrawDiagnostics
    {
        public virtual string Id { get; set; }
        public virtual Initialization InitializationInfo { get; set; }
        public virtual SequenceGeneration SequenceGenerationInfo { get; set; }
        public virtual BestFitFinder BestFitFinderInfo { get; set; }
        public virtual Purger PurgerInfo { get; set; }
        public virtual long Duration { get; set; }
        public virtual List<StimulationResponse> StimulationResponses { get; set; }
        public virtual LocalCodePotInfo LocalCodePot { get; set; }
        public virtual SuperWinInfo SuperWin { get; set; }
        public virtual HappyHourInfo HappyHour { get; set; }
        public virtual string Reasoning { get; set; }
        public virtual AccumulatorConfiguration Configuration { get; set; }
        public virtual SyphonInfo SyphonInfo { get; set; }
        public partial class Initialization
        {
            public virtual long DataLoadDuration { get; set; }
            public virtual long BetsCollectionsCreationDuration { get; set; }
            public virtual long CombinationsOccuranceLookupInitializationDuration { get; set; }
        }

        public partial class Purger
        {
            public virtual decimal PrevalentStake { get; set; }
            public virtual string PoolPurger { get; set; }
            public virtual List<QualifiedPool> QualifiedPools { get; set; }
        }

        public partial class QualifiedPool
        {
            public virtual int Id { get; set; }
            public virtual string Name { get; set; }
            public virtual decimal Coefficient { get; set; }
            public virtual decimal AvailableAmount { get; set; }
            public virtual decimal AwardedAmount { get; set; }
            public virtual Bet TargetBet { get; set; }
            public partial class Bet
            {
                public virtual bool IsFound { get; set; }
                public virtual string BetId { get; set; }
                public virtual string SlipId { get; set; }
                public virtual Object CombStake { get; set; }
            }

        }

        public partial class SequenceGeneration
        {
            public virtual int NrOfThreads { get; set; }
            public virtual int NrOfResultsProbed { get; set; }
            public virtual long Duration { get; set; }
            public virtual long AvgSinglePassDuration { get; set; }
        }

        public partial class BestFitFinder
        {
            public virtual decimal TargetAmount { get; set; }
            public virtual decimal AwardedAmount { get; set; }
            public virtual decimal Deviation { get; set; }
            public virtual decimal DeviationPct { get; set; }
            public virtual string SequenceResultType { get; set; }
            public virtual bool IsJackPot5Drawn { get; set; }
            public virtual long FilteringPeriod { get; set; }
            public virtual SortingOrder WinCountOrder { get; set; }
            public virtual decimal MinAmount { get; set; }
            public virtual decimal MaxAmount { get; set; }
        }

        public partial class StimulationResponse
        {
            public virtual string StimulationId { get; set; }
            public virtual ResponseStatus Status { get; set; }
            public virtual string FailureReason { get; set; }
            public virtual string SlipId { get; set; }
            public virtual string BetId { get; set; }
            public virtual decimal AmountAwarded { get; set; }
            public enum ResponseStatus
            {
                Failure = 0,
                Success = 1,
            }

        }

        public partial class LocalCodePotInfo
        {
            public virtual bool IsActive { get; set; }
            public virtual CurrentRoundInfo Current { get; set; }
            public virtual List<WinnerByCode> Winners { get; set; }
            public partial class CurrentRoundInfo
            {
                public virtual string RoundId { get; set; }
                public virtual decimal Amount { get; set; }
                public virtual string InertCode { get; set; }
            }

        }

        public partial class SuperWinInfo
        {
            public virtual long DurationInMs { get; set; }
        }

        public partial class HappyHourInfo
        {
            public virtual bool IsHappyHour { get; set; }
            public virtual decimal OddsModifier { get; set; }
            public virtual decimal RoundPoolBonusPct { get; set; }
        }

    }

}

namespace Six4Win.WebApi.ServiceModel
{
    public partial class GetDrawDignostics
    {
        public virtual string Id { get; set; }
    }

}

namespace Starnet.Common
{
    public partial class RecordDictionary<TKey, TVal>
        : Dictionary<TKey, TVal>
    {
    }

    public partial class Ref
    {
        public virtual string Id { get; set; }
        public virtual string Val { get; set; }
    }

    public partial class RefEx
        : Ref
    {
        public virtual RecordDictionary<string, string> Data { get; set; }
    }

    public enum SortingOrder
    {
        None = 0,
        Ascending = 1,
        Descending = 2,
    }

}

C# GetDrawDignostics DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /qry/rounds/draw/diagnostics HTTP/1.1 
Host: s4w2.api.bettor.cc 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<GetDrawDignostics xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Six4Win.WebApi.ServiceModel">
  <Id>String</Id>
</GetDrawDignostics>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<DrawDiagnostics xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Six4Win.ReadModel">
  <BestFitFinderInfo>
    <AwardedAmount>0</AwardedAmount>
    <Deviation>0</Deviation>
    <DeviationPct>0</DeviationPct>
    <FilteringPeriod>0</FilteringPeriod>
    <IsJackPot5Drawn>false</IsJackPot5Drawn>
    <MaxAmount>0</MaxAmount>
    <MinAmount>0</MinAmount>
    <SequenceResultType>String</SequenceResultType>
    <TargetAmount>0</TargetAmount>
    <WinCountOrder>None</WinCountOrder>
  </BestFitFinderInfo>
  <Configuration xmlns:d2p1="http://schemas.datacontract.org/2004/07/Six4Win">
    <d2p1:AntiSyphonProtectionOverride>false</d2p1:AntiSyphonProtectionOverride>
    <d2p1:DebugConfig>
      <d2p1:LogBettorSats>false</d2p1:LogBettorSats>
      <d2p1:LogLocationStats>false</d2p1:LogLocationStats>
    </d2p1:DebugConfig>
    <d2p1:DeviationCategorySpanInPct>0</d2p1:DeviationCategorySpanInPct>
    <d2p1:DeviationCategoryThresholdAmount>0</d2p1:DeviationCategoryThresholdAmount>
    <d2p1:FraudDetectionConfig>
      <d2p1:AntiSyphon>
        <d2p1:CombinationCountPerRoundThresholdPct>0</d2p1:CombinationCountPerRoundThresholdPct>
        <d2p1:ExcludedLocations xmlns:d5p1="http://schemas.datacontract.org/2004/07/Starnet.Common">
          <d5p1:Ref>
            <d5p1:Id>String</d5p1:Id>
            <d5p1:Val>String</d5p1:Val>
          </d5p1:Ref>
        </d2p1:ExcludedLocations>
        <d2p1:IncludeRoundPctAsBettorSyphonCriteria>false</d2p1:IncludeRoundPctAsBettorSyphonCriteria>
        <d2p1:IsActive>false</d2p1:IsActive>
      </d2p1:AntiSyphon>
    </d2p1:FraudDetectionConfig>
    <d2p1:HighRollerSettings>
      <d2p1:CategoryThresholds>
        <d2p1:HighRollerSettings.CategoryThreshold>
          <d2p1:Category>Pickerel</d2p1:Category>
          <d2p1:Threshold>0</d2p1:Threshold>
        </d2p1:HighRollerSettings.CategoryThreshold>
      </d2p1:CategoryThresholds>
      <d2p1:Pools>
        <d2p1:HighRollerSettings.PoolSettings>
          <d2p1:Caps>
            <d2p1:MaxAmountInPrevalentStakes>0</d2p1:MaxAmountInPrevalentStakes>
            <d2p1:MinusCoef>0</d2p1:MinusCoef>
            <d2p1:PlusCoef>0</d2p1:PlusCoef>
          </d2p1:Caps>
          <d2p1:ContributionToRoundPoolPct>0</d2p1:ContributionToRoundPoolPct>
          <d2p1:Id>0</d2p1:Id>
          <d2p1:IsActive>false</d2p1:IsActive>
          <d2p1:Name>String</d2p1:Name>
        </d2p1:HighRollerSettings.PoolSettings>
      </d2p1:Pools>
    </d2p1:HighRollerSettings>
    <d2p1:JackPot5ThresholdInterval>
      <d2p1:End>0</d2p1:End>
      <d2p1:Start>0</d2p1:Start>
    </d2p1:JackPot5ThresholdInterval>
    <d2p1:LocationOptimizationLevel>None</d2p1:LocationOptimizationLevel>
    <d2p1:LowWinCountAffinityInPct>0</d2p1:LowWinCountAffinityInPct>
    <d2p1:OverflowCoefficientPoolsToRound>false</d2p1:OverflowCoefficientPoolsToRound>
    <d2p1:Pools>
      <d2p1:AccumulatorConfiguration.Pool>
        <d2p1:Id>0</d2p1:Id>
        <d2p1:Name>String</d2p1:Name>
        <d2p1:RTP>0</d2p1:RTP>
        <d2p1:ReserveRTP>0</d2p1:ReserveRTP>
      </d2p1:AccumulatorConfiguration.Pool>
    </d2p1:Pools>
    <d2p1:PrevalentStake>0</d2p1:PrevalentStake>
    <d2p1:PurgeThresholdModifier>0</d2p1:PurgeThresholdModifier>
    <d2p1:RoundPoolCircuitBreakerThreshold>0</d2p1:RoundPoolCircuitBreakerThreshold>
    <d2p1:WinCountOrderAffinity>
      <d2p1:WinCountOrderProbability>
        <d2p1:Order>None</d2p1:Order>
        <d2p1:Probability>0</d2p1:Probability>
      </d2p1:WinCountOrderProbability>
    </d2p1:WinCountOrderAffinity>
  </Configuration>
  <Duration>0</Duration>
  <HappyHour>
    <IsHappyHour>false</IsHappyHour>
    <OddsModifier>0</OddsModifier>
    <RoundPoolBonusPct>0</RoundPoolBonusPct>
  </HappyHour>
  <Id>String</Id>
  <InitializationInfo>
    <BetsCollectionsCreationDuration>0</BetsCollectionsCreationDuration>
    <CombinationsOccuranceLookupInitializationDuration>0</CombinationsOccuranceLookupInitializationDuration>
    <DataLoadDuration>0</DataLoadDuration>
  </InitializationInfo>
  <LocalCodePot>
    <DurationInMs>0</DurationInMs>
  </LocalCodePot>
  <PurgerInfo>
    <PoolPurger>String</PoolPurger>
    <PrevalentStake>0</PrevalentStake>
    <QualifiedPools>
      <DrawDiagnostics.QualifiedPool>
        <AvailableAmount>0</AvailableAmount>
        <AwardedAmount>0</AwardedAmount>
        <Coefficient>0</Coefficient>
        <Id>0</Id>
        <Name>String</Name>
        <TargetBet>
          <BetId>String</BetId>
          <CombStake />
          <IsFound>false</IsFound>
          <SlipId>String</SlipId>
        </TargetBet>
      </DrawDiagnostics.QualifiedPool>
    </QualifiedPools>
  </PurgerInfo>
  <Reasoning>String</Reasoning>
  <SequenceGenerationInfo>
    <AvgSinglePassDuration>0</AvgSinglePassDuration>
    <Duration>0</Duration>
    <NrOfResultsProbed>0</NrOfResultsProbed>
    <NrOfThreads>0</NrOfThreads>
  </SequenceGenerationInfo>
  <StimulationResponses>
    <DrawDiagnostics.StimulationResponse>
      <AmountAwarded>0</AmountAwarded>
      <BetId>String</BetId>
      <FailureReason>String</FailureReason>
      <SlipId>String</SlipId>
      <Status>Failure</Status>
      <StimulationId>String</StimulationId>
    </DrawDiagnostics.StimulationResponse>
  </StimulationResponses>
  <SuperWin>
    <DurationInMs>0</DurationInMs>
  </SuperWin>
  <SyphonInfo xmlns:d2p1="http://schemas.datacontract.org/2004/07/Six4Win.Common">
    <d2p1:Bettors xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringSyphonFQuwRXs4>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>
          <d2p1:Id>String</d2p1:Id>
          <d2p1:Name>String</d2p1:Name>
          <d2p1:NrOfCombinations>0</d2p1:NrOfCombinations>
          <d2p1:Type>Location</d2p1:Type>
        </d3p1:Value>
      </d3p1:KeyValueOfstringSyphonFQuwRXs4>
    </d2p1:Bettors>
    <d2p1:Locations xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringSyphonFQuwRXs4>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>
          <d2p1:Id>String</d2p1:Id>
          <d2p1:Name>String</d2p1:Name>
          <d2p1:NrOfCombinations>0</d2p1:NrOfCombinations>
          <d2p1:Type>Location</d2p1:Type>
        </d3p1:Value>
      </d3p1:KeyValueOfstringSyphonFQuwRXs4>
    </d2p1:Locations>
  </SyphonInfo>
</DrawDiagnostics>