class LolSoap::WSDL::OperationIO

Attributes

body[R]
header[R]

Public Class Methods

new(header, body) click to toggle source
# File lib/lolsoap/wsdl/operation_io.rb, line 5
def initialize(header, body)
  @header = header
  @body   = body
end

Public Instance Methods

inspect() click to toggle source
# File lib/lolsoap/wsdl/operation_io.rb, line 10
def inspect
  "<#{self.class} " \
  "header=#{header.inspect} " \
  "body=#{body.inspect}>"
end