Sha256: 66fddbb8177ed7d1003f25aa33ea84f5015fff730f7d7bf488324a415018ab3b

Contents?: true

Size: 293 Bytes

Versions: 3

Compression:

Stored size: 293 Bytes

Contents

# frozen_string_literal: true

module Wamp
  module Type
    # Result Type
    class Result
      attr_reader :args, :kwargs, :details

      def initialize(args: [], kwargs: {}, details: {})
        @args = args
        @kwargs = kwargs
        @details = details
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
xconn-0.1.2 lib/wamp/type/result.rb
xconn-0.1.1 lib/wamp/type/result.rb
xconn-0.1.0 lib/wamp/type/result.rb