Sha256: 199ff742b4bae938102025c034da762706340d4db458447863cdb5519657793f

Contents?: true

Size: 1.09 KB

Versions: 7

Compression:

Stored size: 1.09 KB

Contents

module MoneyS3
  module Parsers
    class BankSpojeniType
      include ParserCore::BaseParser

      def ucet
        at 'Ucet'
      end

      def ucet_attributes
        attributes_at 'Ucet'
      end

      def kod_banky
        at 'KodBanky'
      end

      def kod_banky_attributes
        attributes_at 'KodBanky'
      end

      def mena
        at 'Mena'
      end

      def mena_attributes
        attributes_at 'Mena'
      end

      def ucel
        at 'Ucel'
      end

      def ucel_attributes
        attributes_at 'Ucel'
      end

      def to_h
        hash = {}
        hash[:attributes] = attributes

        hash[:ucet] = ucet if has? 'Ucet'
        hash[:ucet_attributes] = ucet_attributes if has? 'Ucet'
        hash[:kod_banky] = kod_banky if has? 'KodBanky'
        hash[:kod_banky_attributes] = kod_banky_attributes if has? 'KodBanky'
        hash[:mena] = mena if has? 'Mena'
        hash[:mena_attributes] = mena_attributes if has? 'Mena'
        hash[:ucel] = ucel if has? 'Ucel'
        hash[:ucel_attributes] = ucel_attributes if has? 'Ucel'

        hash
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
money_s3-2.4.1 lib/money_s3/parsers/bank_spojeni_type.rb
money_s3-2.4.0 lib/money_s3/parsers/bank_spojeni_type.rb
money_s3-2.3.0 lib/money_s3/parsers/bank_spojeni_type.rb
money_s3-2.2.0 lib/money_s3/parsers/bank_spojeni_type.rb
money_s3-2.1.0 lib/money_s3/parsers/bank_spojeni_type.rb
money_s3-2.0.0 lib/money_s3/parsers/bank_spojeni_type.rb
money_s3-1.0.0 lib/money_s3/parsers/bank_spojeni_type.rb