Class: FinancialInstitution

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(fid, name, org, url) ⇒ FinancialInstitution

Returns a new instance of FinancialInstitution.



8
9
10
11
12
13
# File 'lib/FinancialInstitution.rb', line 8

def initialize(fid, name, org, url)
    @fid = fid;
    @name = name;
    @org = org;
    @url = url;
end

Instance Attribute Details

#fidObject

Returns the value of attribute fid.



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

def fid
  @fid
end

#nameObject

Returns the value of attribute name.



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

def name
  @name
end

#orgObject

Returns the value of attribute org.



5
6
7
# File 'lib/FinancialInstitution.rb', line 5

def org
  @org
end

#urlObject

Returns the value of attribute url.



6
7
8
# File 'lib/FinancialInstitution.rb', line 6

def url
  @url
end