class MerchantESolutions::DepositRecord

Attributes

amount[R]
date[R]
organization_id[R]
organization_name[R]
reference_id[R]
type[R]

Public Class Methods

new(row) click to toggle source
# File lib/merchant_e_solutions/deposit_record.rb, line 9
def initialize(row)
  @organization_id = row[0]
  @organization_name = row[1]
  @date = parse_date(row[2])
  @type = row[3]
  @amount = row[4]
  @reference_id = row[5]
end