Sha256: f01cda337c3558047c9e50149c241aaa74829f3489fc14d95abd78453fba0fd5

Contents?: true

Size: 419 Bytes

Versions: 1

Compression:

Stored size: 419 Bytes

Contents

require 'money_s3/parsers/base_parser'
require 'money_s3/parsers/nab_vyd'

module MoneyS3
  module Parsers
    class SeznamNabVyd
      include BaseParser

      def nab_vyd
        array_of_at(NabVyd, ['NabVyd'])
      end

      def to_h
        hash = WithAttributes.new({})
        hash.attributes = attributes

        hash[:nab_vyd] = nab_vyd.map(&:to_h) if has? 'NabVyd'

        hash
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
money_s3-0.6.0 lib/money_s3/parsers/seznam_nab_vyd.rb