Sha256: 3df99f9a2e28c3934d9a7972e8d6def612be3296c9cee51347dcf20c6fbff018
Contents?: true
Size: 420 Bytes
Versions: 4
Compression:
Stored size: 420 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_with_attrs hash = HashWithAttributes.new({}, attributes) hash[:nab_vyd] = nab_vyd.map(&:to_h_with_attrs) if has? 'NabVyd' hash end end end end
Version data entries
4 entries across 4 versions & 1 rubygems