Sha256: 6459f50f3ed3f11ed5dec6a69751873cf661a3694a1a35aefa03983bfd6be13e

Contents?: true

Size: 301 Bytes

Versions: 1

Compression:

Stored size: 301 Bytes

Contents

# frozen_string_literal: true

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

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
xconn-0.1.0 lib/wamp/type/invocation.rb