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