Class: WsdlMapper::SvcDesc::Envelope
- Inherits:
-
Object
- Object
- WsdlMapper::SvcDesc::Envelope
- Defined in:
- lib/wsdl_mapper/svc_desc/envelope.rb
Instance Attribute Summary (collapse)
-
- (Object) body
Returns the value of attribute body.
-
- (Object) header
Returns the value of attribute header.
Instance Method Summary (collapse)
-
- (Envelope) initialize(header: nil, body: nil)
constructor
A new instance of Envelope.
Constructor Details
- (Envelope) initialize(header: nil, body: nil)
Returns a new instance of Envelope
6 7 8 9 |
# File 'lib/wsdl_mapper/svc_desc/envelope.rb', line 6 def initialize(header: nil, body: nil) @header = header @body = body end |
Instance Attribute Details
- (Object) body
Returns the value of attribute body
4 5 6 |
# File 'lib/wsdl_mapper/svc_desc/envelope.rb', line 4 def body @body end |
- (Object) header
Returns the value of attribute header
4 5 6 |
# File 'lib/wsdl_mapper/svc_desc/envelope.rb', line 4 def header @header end |