Example #1
0
 public MarketFilter WithBettingTypeAsianHandicapSingleLine()
 {
     BettingTypes ??= new HashSet <string>();
     BettingTypes.Add("ASIAN_HANDICAP_SINGLE_LINE");
     return(this);
 }
Example #2
0
 public MarketFilter WithBettingTypeLine()
 {
     BettingTypes ??= new HashSet <string>();
     BettingTypes.Add("LINE");
     return(this);
 }
Example #3
0
 public MarketFilter WithBettingTypeRange()
 {
     BettingTypes ??= new HashSet <string>();
     BettingTypes.Add("RANGE");
     return(this);
 }
Example #4
0
 public MarketFilter WithBettingTypeOdds()
 {
     BettingTypes ??= new HashSet <string>();
     BettingTypes.Add("ODDS");
     return(this);
 }