class FinancialInstitution

Attributes

fid[RW]
name[RW]
org[RW]
url[RW]

Public Class Methods

new(fid, name, org, url) click to toggle source
# File lib/FinancialInstitution.rb, line 8
def initialize(fid, name, org, url)
    @fid = fid;
    @name = name;
    @org = org;
    @url = url;
end