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