Class: Sportradar::Api::Basketball::Ncaamb::Conference

Inherits:
Data
  • Object
show all
Defined in:
lib/sportradar/api/basketball/ncaamb/conference.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Data

#all_attributes, #attributes, #create_data, #parse_into_array, #parse_into_array_with_options, #parse_out_hashes, #structure_links, #update_data

Constructor Details

#initialize(data, **opts) ⇒ Conference

Returns a new instance of Conference.



8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/sportradar/api/basketball/ncaamb/conference.rb', line 8

def initialize(data, **opts)
  # @response = data
  @api      = opts[:api]

  @id    = data["id"]
  @name  = data["name"]
  @alias = data["alias"]
  @assigned_teams = nil
  @teams_hash = {}

  update(data, **opts)
end

Instance Attribute Details

#aliasObject

Returns the value of attribute alias.



6
7
8
# File 'lib/sportradar/api/basketball/ncaamb/conference.rb', line 6

def alias
  @alias
end

#idObject

Returns the value of attribute id.



6
7
8
# File 'lib/sportradar/api/basketball/ncaamb/conference.rb', line 6

def id
  @id
end

#nameObject

Returns the value of attribute name.



6
7
8
# File 'lib/sportradar/api/basketball/ncaamb/conference.rb', line 6

def name
  @name
end

#responseObject

Returns the value of attribute response.



6
7
8
# File 'lib/sportradar/api/basketball/ncaamb/conference.rb', line 6

def response
  @response
end

Instance Method Details

#conferencesObject



37
38
39
# File 'lib/sportradar/api/basketball/ncaamb/conference.rb', line 37

def conferences
  teams.flat_map(&:conferences)
end

#team(code_name) ⇒ Object



31
32
33
# File 'lib/sportradar/api/basketball/ncaamb/conference.rb', line 31

def team(code_name)
  teams_by_name[code_name]
end

#teamsObject



25
26
27
# File 'lib/sportradar/api/basketball/ncaamb/conference.rb', line 25

def teams
  @assigned_teams || @teams_hash.values
end

#teams=(array) ⇒ Object



28
29
30
# File 'lib/sportradar/api/basketball/ncaamb/conference.rb', line 28

def teams=(array)
  @assigned_teams = array
end

#update(data, **opts) ⇒ Object



21
22
23
# File 'lib/sportradar/api/basketball/ncaamb/conference.rb', line 21

def update(data, **opts)
  create_data(@teams_hash, data["teams"], klass: Team, conference: self, api: @api) # if data["team"]
end