class Lol::FeaturedGameList

List of featured games

Each contained featured game is represented through {DynamicModel}

Attributes

client_refresh_interval[R]

The suggested interval to wait before requesting FeaturedGames again @return [Integer]

Public Class Methods

new(data) click to toggle source
Calls superclass method
# File lib/lol/featured_game_list.rb, line 10
def initialize data
  @client_refresh_interval = data['clientRefreshInterval']
  super data['gameList'].map { |g| DynamicModel.new g }
end