class Stattleship::Params::TeamOutcomeStreaksParams

Attributes

current[RW]
interval_type[RW]
outcome[RW]
rank[RW]
ranked[RW]
season_id[RW]
streak_length[RW]
team_id[RW]

Public Instance Methods

params() click to toggle source
Calls superclass method Stattleship::Params::QueryParams#params
# File lib/stattleship/params/team_outcome_streaks_params.rb, line 12
def params
  super.merge('current' => current,
              'interval_type' => interval_type,
              'outcome' => outcome,
              'rank' => rank,
              'ranked' => ranked,
              'season_id' => season_id,
              'streak_length' => streak_length,
              'team_id' => team_id)
end