# File lib/dynflow/dispatcher.rb, line 49 def self.product_from_hash(hash) super(hash.merge 'event' => Marshal.load(Base64.strict_decode64(hash.fetch('event')))) end
# File lib/dynflow/dispatcher.rb, line 45 def to_hash super.update event: Base64.strict_encode64(Marshal.dump(event)) end