Class: CamtParser::Charges

Inherits:
Object
  • Object
show all
Defined in:
lib/camt_parser/general/charges.rb

Instance Method Summary collapse

Constructor Details

#initialize(xml_data) ⇒ Charges

Returns a new instance of Charges.



3
4
5
6
# File 'lib/camt_parser/general/charges.rb', line 3

def initialize(xml_data)
  @xml_data = xml_data
  @total_charges_and_tax_amount = @xml_data.xpath('TtlChrgsAndTaxAmt/text()').text
end

Instance Method Details

#recordsObject



16
17
18
# File 'lib/camt_parser/general/charges.rb', line 16

def records
  @records ||= @xml_data.xpath('Rcrd').map{ |x| CamtParser::Record.new(x) }
end

#total_charges_and_tax_amountObject



8
9
10
# File 'lib/camt_parser/general/charges.rb', line 8

def total_charges_and_tax_amount
  CamtParser::Misc.to_amount(@total_charges_and_tax_amount)
end

#total_charges_and_tax_amount_in_centsObject



12
13
14
# File 'lib/camt_parser/general/charges.rb', line 12

def total_charges_and_tax_amount_in_cents
  CamtParser::Misc.to_amount_in_cents(@total_charges_and_tax_amount)
end