Sha256: 6f83c179391a94477570087fdb4bc8e68d37bb8c3ede612e21f6faf75c342330

Contents?: true

Size: 481 Bytes

Versions: 2

Compression:

Stored size: 481 Bytes

Contents

module MoneyS3
  module Builders
    class MsgPredkontaceDEType < MessageType
      include ParserCore::BaseBuilder

      def builder
        root = Ox::Element.new(name)
        if data.respond_to? :attributes
          data.attributes.each { |k, v| root[k] = v }
        end

        super.nodes.each do |n|
          root << n
        end

        if data.key? :data
          root << Data4.new('Data', data[:data]).builder
        end

        root
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
money_s3-0.12.0 lib/money_s3/builders/msg_predkontace_de_type.rb
money_s3-0.11.0 lib/money_s3/builders/msg_predkontace_de_type.rb