Class: WelcuApi::Company

Inherits:
Object
  • Object
show all
Defined in:
lib/welcu_api/company.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id, name) ⇒ Company

Returns a new instance of Company.



6
7
8
9
# File 'lib/welcu_api/company.rb', line 6

def initialize(id, name)
  @id = id
  @name = name
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



3
4
5
# File 'lib/welcu_api/company.rb', line 3

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



4
5
6
# File 'lib/welcu_api/company.rb', line 4

def name
  @name
end