Sha256: b9a5ccd0bcfb0763caf68b311a2ecd372b636f64d7053952f6caee99b715a534
Contents?: true
Size: 462 Bytes
Versions: 4
Compression:
Stored size: 462 Bytes
Contents
require 'money_s3/parsers/base_parser' require 'money_s3/parsers/kusovnik_type' module MoneyS3 module Parsers class SeznamTypKusovnik include BaseParser def typ_kusovnik array_of_at(KusovnikType, ['TypKusovnik']) end def to_h_with_attrs hash = HashWithAttributes.new({}, attributes) hash[:typ_kusovnik] = typ_kusovnik.map(&:to_h_with_attrs) if has? 'TypKusovnik' hash end end end end
Version data entries
4 entries across 4 versions & 1 rubygems