Class: MoneyS3::Parsers::SeznamFaktVyd

Inherits:
Object
  • Object
show all
Includes:
ParserCore::BaseParser
Defined in:
lib/money_s3/parsers/seznam_fakt_vyd.rb

Instance Method Summary collapse

Instance Method Details

#fakt_vydObject



6
7
8
# File 'lib/money_s3/parsers/seznam_fakt_vyd.rb', line 6

def fakt_vyd
  array_of_at(FaktVyd, ['FaktVyd'])
end

#to_hObject



10
11
12
13
14
15
16
17
# File 'lib/money_s3/parsers/seznam_fakt_vyd.rb', line 10

def to_h
  hash = {}
  hash[:attributes] = attributes

  hash[:fakt_vyd] = fakt_vyd.map(&:to_h) if has? 'FaktVyd'

  hash
end