Sha256: 58fd9c42942ce905753ac420f4202180e9aef92f5b96d3ea90e10eb42feb5959

Contents?: true

Size: 1.09 KB

Versions: 15

Compression:

Stored size: 1.09 KB

Contents

# encoding: ASCII-8BIT
require 'xsd/qname'

module WSDL; module Any


# {urn:example.com:echo-type}foo.bar
#   before - SOAP::SOAPString
#   after - SOAP::SOAPString
class FooBar
  attr_accessor :before
  attr_reader :__xmlele_any
  attr_accessor :after

  def set_any(elements)
    @__xmlele_any = elements
  end

  def initialize(before = nil, after = nil)
    @before = before
    @__xmlele_any = nil
    @after = after
  end
end

# {urn:example.com:echo-type}setOutputAndCompleteRequest
#   taskId - SOAP::SOAPString
#   data - WSDL::Any::SetOutputAndCompleteRequest::C_Data
#   participantToken - SOAP::SOAPString
class SetOutputAndCompleteRequest

  # inner class for member: data
  # {}data
  class C_Data
    attr_reader :__xmlele_any

    def set_any(elements)
      @__xmlele_any = elements
    end

    def initialize
      @__xmlele_any = nil
    end
  end

  attr_accessor :taskId
  attr_accessor :data
  attr_accessor :participantToken

  def initialize(taskId = nil, data = nil, participantToken = nil)
    @taskId = taskId
    @data = data
    @participantToken = participantToken
  end
end


end; end

Version data entries

15 entries across 15 versions & 9 rubygems

Version Path
malagant-soap4r-1.5.8.20141127181857 test/wsdl/any/expectedEcho.rb
rtiss_soap4r-1.6.1 test/wsdl/any/expectedEcho.rb
rtiss_soap4r-1.6.0 test/wsdl/any/expectedEcho.rb
eSpace_soap4r-1.5.8 test/wsdl/any/expectedEcho.rb
soap4r-ruby19-1.5.9 test/wsdl/any/expectedEcho.rb
tomdz-soap4r-1.5.8.20120202093209 test/wsdl/any/expectedEcho.rb
soap5r-2.0.3 test/wsdl/any/expectedEcho.rb
soap5r-2.0.2 test/wsdl/any/expectedEcho.rb
soap5r-2.0.1 test/wsdl/any/expectedEcho.rb
soap5r-2.0.0 test/wsdl/any/expectedEcho.rb
soap5r-2.0.0.20120130130121 test/wsdl/any/expectedEcho.rb
soap4r-sgonyea-1.5.9 test/wsdl/any/expectedEcho.rb
sunteya-soap4r-1.5.8.0 test/wsdl/any/expectedEcho.rb
tomdz-soap4r-1.5.8.20111103171510 test/wsdl/any/expectedEcho.rb
rubyjedi-soap4r-1.5.8.20100619003610 test/wsdl/any/expectedEcho.rb