Sha256: 1ef23c8edbbddcb8e8a6be35fe085b8edacaceb8443e8aadd5446b5ad9fc144b
Contents?: true
Size: 620 Bytes
Versions: 6
Compression:
Stored size: 620 Bytes
Contents
module MoneyS3 module Parsers class MsgBanDoklType < MessageType include ParserCore::BaseParser def adresa submodel_at(MessageType, 'Adresa') end def ucet submodel_at(MessageType, 'Ucet') end def uhrada array_of_at(MessageType, ['Uhrada']) end def to_h hash = {} hash[:attributes] = attributes hash[:adresa] = adresa.to_h if has? 'Adresa' hash[:ucet] = ucet.to_h if has? 'Ucet' hash[:uhrada] = uhrada.map(&:to_h) if has? 'Uhrada' hash super.merge(hash) end end end end
Version data entries
6 entries across 6 versions & 1 rubygems