class BankingData::Bank

Public Class Methods

new(attributes = {}) click to toggle source
# File lib/banking_data/bank.rb, line 4
def initialize(attributes = {})
  attributes.each do |name, value|
    send("#{name}=", value)
  end
end
query() click to toggle source
# File lib/banking_data/bank.rb, line 16
def query
  Query.new(locale: self::LOCALE)
end
where(options) click to toggle source
# File lib/banking_data/bank.rb, line 12
def where(options)
  Query.new(options)
end