Sha256: 63ff86cbc391344c09991a3833a279daaee163c307a7441f83fda936d51e3ce9
Contents?: true
Size: 388 Bytes
Versions: 6
Compression:
Stored size: 388 Bytes
Contents
module MoneyS3 module Parsers class MsgInvDoklType < MessageType include ParserCore::BaseParser def polozka array_of_at(MsgPolozType, ['Polozka']) end def to_h hash = {} hash[:attributes] = attributes hash[:polozka] = polozka.map(&:to_h) if has? 'Polozka' hash super.merge(hash) end end end end
Version data entries
6 entries across 6 versions & 1 rubygems