Class: Dev::TargetProcess::Team

Inherits:
Object
  • Object
show all
Defined in:
lib/firespring_dev_commands/target_process/team.rb

Overview

Class containing team information

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ Team

Returns a new instance of Team.



7
8
9
10
11
12
# File 'lib/firespring_dev_commands/target_process/team.rb', line 7

def initialize(data)
  @data = data
  @id = data['Id']
  @type = data['ResourceType']
  @name = data['Name']
end

Instance Attribute Details

#dataObject

Returns the value of attribute data.



5
6
7
# File 'lib/firespring_dev_commands/target_process/team.rb', line 5

def data
  @data
end

#idObject

Returns the value of attribute id.



5
6
7
# File 'lib/firespring_dev_commands/target_process/team.rb', line 5

def id
  @id
end

#nameObject

Returns the value of attribute name.



5
6
7
# File 'lib/firespring_dev_commands/target_process/team.rb', line 5

def name
  @name
end

#typeObject

Returns the value of attribute type.



5
6
7
# File 'lib/firespring_dev_commands/target_process/team.rb', line 5

def type
  @type
end