class Myfinance::Entities::PayableAccountCollection

A wrapper to Myfinance payable accounts collection

Public Instance Methods

build_collection() click to toggle source
# File lib/myfinance/entities/payable_account_collection.rb, line 7
def build_collection
  response.parsed_body.each do |attributes|
    collection.push(Myfinance::Entities::PayableAccount.new(attributes["payable_account"]))
  end
end