Class: MLBStatsAPI::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/mlb_stats_api/base.rb

Direct Known Subclasses

ColorFeed, LiveFeed, Team

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ Base

Returns a new instance of Base.



7
8
9
# File 'lib/mlb_stats_api/base.rb', line 7

def initialize(data)
  @data = data
end

Instance Attribute Details

#dataObject (readonly)

Returns the value of attribute data.



5
6
7
# File 'lib/mlb_stats_api/base.rb', line 5

def data
  @data
end

Instance Method Details

#[](key) ⇒ Object



11
12
13
# File 'lib/mlb_stats_api/base.rb', line 11

def [](key)
  @data[key]
end

#dig(*path) ⇒ Object



15
16
17
# File 'lib/mlb_stats_api/base.rb', line 15

def dig(*path)
  @data.dig(*path)
end