Class: CamtParser::Format052::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/camt_parser/052/base.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(xml_data) ⇒ Base

Returns a new instance of Base.



6
7
8
9
10
11
12
# File 'lib/camt_parser/052/base.rb', line 6

def initialize(xml_data)
  # BkToCstmrAccptRpt = Bank to Customer Account Report
  grphdr = xml_data.xpath('BkToCstmrAcctRpt/GrpHdr')
  @group_header = CamtParser::GroupHeader.new(grphdr)
  reports = xml_data.xpath('BkToCstmrAcctRpt/Rpt')
  @reports = reports.map{ |x| Report.new(x) }
end

Instance Attribute Details

#group_headerObject (readonly)

Returns the value of attribute group_header.



4
5
6
# File 'lib/camt_parser/052/base.rb', line 4

def group_header
  @group_header
end

#reportsObject (readonly)

Returns the value of attribute reports.



4
5
6
# File 'lib/camt_parser/052/base.rb', line 4

def reports
  @reports
end