Class: Dev::BloomGrowth::User

Inherits:
Object
  • Object
show all
Defined in:
lib/firespring_dev_commands/bloom_growth/user.rb

Overview

Class containing user information

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ User

Returns a new instance of User.



7
8
9
10
11
12
13
14
15
# File 'lib/firespring_dev_commands/bloom_growth/user.rb', line 7

def initialize(data)
  @data = data
  @id = data['Id']
  @type = data['Type']
  @name = data['Name'].to_s.strip
  @rocks = nil
  @direct_reports = nil
  @seats = nil
end

Instance Attribute Details

#dataObject

Returns the value of attribute data.



5
6
7
# File 'lib/firespring_dev_commands/bloom_growth/user.rb', line 5

def data
  @data
end

#direct_reportsObject

Returns the value of attribute direct_reports.



5
6
7
# File 'lib/firespring_dev_commands/bloom_growth/user.rb', line 5

def direct_reports
  @direct_reports
end

#idObject

Returns the value of attribute id.



5
6
7
# File 'lib/firespring_dev_commands/bloom_growth/user.rb', line 5

def id
  @id
end

#nameObject

Returns the value of attribute name.



5
6
7
# File 'lib/firespring_dev_commands/bloom_growth/user.rb', line 5

def name
  @name
end

#rocksObject

Returns the value of attribute rocks.



5
6
7
# File 'lib/firespring_dev_commands/bloom_growth/user.rb', line 5

def rocks
  @rocks
end

#seatsObject

Returns the value of attribute seats.



5
6
7
# File 'lib/firespring_dev_commands/bloom_growth/user.rb', line 5

def seats
  @seats
end

#typeObject

Returns the value of attribute type.



5
6
7
# File 'lib/firespring_dev_commands/bloom_growth/user.rb', line 5

def type
  @type
end