Class: ProveUru::FreeAddress

Inherits:
Object
  • Object
show all
Defined in:
lib/prove_uru/free_address.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#line_1Object

Returns the value of attribute line_1.



2
3
4
# File 'lib/prove_uru/free_address.rb', line 2

def line_1
  @line_1
end

#line_2Object

Returns the value of attribute line_2.



2
3
4
# File 'lib/prove_uru/free_address.rb', line 2

def line_2
  @line_2
end

#line_3Object

Returns the value of attribute line_3.



2
3
4
# File 'lib/prove_uru/free_address.rb', line 2

def line_3
  @line_3
end

#line_4Object

Returns the value of attribute line_4.



2
3
4
# File 'lib/prove_uru/free_address.rb', line 2

def line_4
  @line_4
end

#line_5Object

Returns the value of attribute line_5.



2
3
4
# File 'lib/prove_uru/free_address.rb', line 2

def line_5
  @line_5
end

#line_6Object

Returns the value of attribute line_6.



2
3
4
# File 'lib/prove_uru/free_address.rb', line 2

def line_6
  @line_6
end

#line_7Object

Returns the value of attribute line_7.



2
3
4
# File 'lib/prove_uru/free_address.rb', line 2

def line_7
  @line_7
end

#line_8Object

Returns the value of attribute line_8.



2
3
4
# File 'lib/prove_uru/free_address.rb', line 2

def line_8
  @line_8
end

Instance Method Details

#to_prove_hashObject



4
5
6
7
8
9
10
11
12
13
14
15
# File 'lib/prove_uru/free_address.rb', line 4

def to_prove_hash
  {
    "Line1" => self.line_1,
    "Line2" => self.line_2,
    "Line3" => self.line_3,
    "Line4" => self.line_4,
    "Line5" => self.line_5,
    "Line6" => self.line_6,
    "Line7" => self.line_7,
    "Line8" => self.line_8
  }
end