class Sports::Group

Attributes

key[R]
name[R]
teams[R]

Public Class Methods

new( key: nil, name:, teams: ) click to toggle source
# File lib/sportdb/structs/structs/group.rb, line 6
def initialize( key: nil,
                name:,
                teams: )
  @key    = key    ## e.g. A,B,C  or 1,2,3, - note: always a string or nil
  @name   = name
  @teams  = teams
end