Class: Kakaxi::Farm
- Inherits:
-
Object
- Object
- Kakaxi::Farm
- Defined in:
- lib/kakaxi/farm.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
Returns the value of attribute id.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(id: nil, name: nil) ⇒ Farm
constructor
A new instance of Farm.
Constructor Details
#initialize(id: nil, name: nil) ⇒ Farm
Returns a new instance of Farm.
5 6 7 8 |
# File 'lib/kakaxi/farm.rb', line 5 def initialize(id: nil, name: nil) @id = id @name = name end |
Instance Attribute Details
#id ⇒ Object
Returns the value of attribute id.
3 4 5 |
# File 'lib/kakaxi/farm.rb', line 3 def id @id end |
#name ⇒ Object
Returns the value of attribute name.
3 4 5 |
# File 'lib/kakaxi/farm.rb', line 3 def name @name end |