Sha256: fe93c64b2ba8668b41523c46ef58d072ba4e49b08a4c298da950ec66de4a504c
Contents?: true
Size: 428 Bytes
Versions: 4
Compression:
Stored size: 428 Bytes
Contents
require 'money_s3/parsers/base_parser' require 'money_s3/parsers/nab_prij' module MoneyS3 module Parsers class SeznamNabPrij include BaseParser def nab_prij array_of_at(NabPrij, ['NabPrij']) end def to_h_with_attrs hash = HashWithAttributes.new({}, attributes) hash[:nab_prij] = nab_prij.map(&:to_h_with_attrs) if has? 'NabPrij' hash end end end end
Version data entries
4 entries across 4 versions & 1 rubygems