Sha256: e1b41d51805eb2117ac1cf26748e465309ce7ad89546a48d0c9222030eb41f5b
Contents?: true
Size: 427 Bytes
Versions: 12
Compression:
Stored size: 427 Bytes
Contents
class LolSoap::WSDL class Operation attr_reader :wsdl, :name, :action, :input, :output def initialize(wsdl, name, action, input, output) @wsdl = wsdl @name = name @action = action @input = input @output = output end def inspect "<#{self.class} " \ "name=#{name.inspect} " \ "action=#{action.inspect} " \ "input=#{input.inspect}>" end end end
Version data entries
12 entries across 12 versions & 1 rubygems