class Slacks::Team

Attributes

domain[R]
id[R]
name[R]

Public Class Methods

new(data) click to toggle source
# File lib/slacks/team.rb, line 5
def initialize(data)
  @id = data.fetch("id")
  @name = data.fetch("name")
  @domain = data.fetch("domain")
end