Sha256: b9ed27dff8bb0095a8bc87bf7b15ef35f888401d997f88209b08c5c895fd2f0c
Contents?: true
Size: 679 Bytes
Versions: 2
Compression:
Stored size: 679 Bytes
Contents
require 'xsd/qname' module WSDL::Any # {urn:example.com:echo-type}foo.bar 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 class SetOutputAndCompleteRequest 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
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
soap4r-1.5.6 | test/wsdl/any/expectedEcho.rb |
soap4r-1.5.7 | test/wsdl/any/expectedEcho.rb |