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