Sha256: a92f12bc36adec7a6492eeb60811fa0e46e2b22bc37ac6ae3d8442e3669f228e

Contents?: true

Size: 1013 Bytes

Versions: 4

Compression:

Stored size: 1013 Bytes

Contents

require 'money_s3/parsers/base_parser'
require 'money_s3/parsers/ekategorie_zasoba_type'

module MoneyS3
  module Parsers
    class EshopZasobaType
      include BaseParser

      def in_export
        at 'IN_Export'
      end

      def in_changed
        at 'IN_Changed'
      end

      def in_deleted
        at 'IN_Deleted'
      end

      def cis_karty
        at 'CisKarty'
      end

      def cis_skladu
        at 'CisSkladu'
      end

      def e_skup
        array_of_at(EkategorieZasobaType, ['eSkup'])
      end

      def to_h_with_attrs
        hash = HashWithAttributes.new({}, attributes)

        hash[:in_export] = in_export if has? 'IN_Export'
        hash[:in_changed] = in_changed if has? 'IN_Changed'
        hash[:in_deleted] = in_deleted if has? 'IN_Deleted'
        hash[:cis_karty] = cis_karty if has? 'CisKarty'
        hash[:cis_skladu] = cis_skladu if has? 'CisSkladu'
        hash[:e_skup] = e_skup.map(&:to_h_with_attrs) if has? 'eSkup'

        hash
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
money_s3-0.10.0 lib/money_s3/parsers/eshop_zasoba_type.rb
money_s3-0.9.0 lib/money_s3/parsers/eshop_zasoba_type.rb
money_s3-0.8.0 lib/money_s3/parsers/eshop_zasoba_type.rb
money_s3-0.7.0 lib/money_s3/parsers/eshop_zasoba_type.rb