Class: LolSoap::WSDL::OperationIO

Inherits:
Object
  • Object
show all
Defined in:
lib/lolsoap/wsdl/operation_io.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(header, body) ⇒ OperationIO

Returns a new instance of OperationIO.



5
6
7
8
# File 'lib/lolsoap/wsdl/operation_io.rb', line 5

def initialize(header, body)
  @header = header
  @body   = body
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



3
4
5
# File 'lib/lolsoap/wsdl/operation_io.rb', line 3

def body
  @body
end

#headerObject (readonly)

Returns the value of attribute header.



3
4
5
# File 'lib/lolsoap/wsdl/operation_io.rb', line 3

def header
  @header
end

Instance Method Details

#inspectObject



10
11
12
13
14
# File 'lib/lolsoap/wsdl/operation_io.rb', line 10

def inspect
  "<#{self.class} " \
  "header=#{header.inspect} " \
  "body=#{body.inspect}>"
end