Sha256: 8b468e51089f5c2b1ba738b677ae4965a3bce336e5e987ef08de5b1e277eaf04
Contents?: true
Size: 435 Bytes
Versions: 1
Compression:
Stored size: 435 Bytes
Contents
require 'money_s3/parsers/base_parser' require 'money_s3/parsers/fakt_prij' module MoneyS3 module Parsers class SeznamFaktPrij include BaseParser def fakt_prij array_of_at(FaktPrij, ['FaktPrij']) end def to_h hash = WithAttributes.new({}) hash.attributes = attributes hash[:fakt_prij] = fakt_prij.map(&:to_h) if has? 'FaktPrij' hash end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
money_s3-0.6.0 | lib/money_s3/parsers/seznam_fakt_prij.rb |