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