Class: SoftLayer::Param
- Inherits:
-
SOAP::Header::SimpleHandler
- Object
- SOAP::Header::SimpleHandler
- SoftLayer::Param
- Defined in:
- lib/softlayer.rb
Overview
A class to old Paramaters.
Instance Method Summary collapse
- #[](k) ⇒ Object
- #[]=(k, v) ⇒ Object
-
#initialize(tag, out) ⇒ Param
constructor
A new instance of Param.
- #on_simple_outbound ⇒ Object
Constructor Details
#initialize(tag, out) ⇒ Param
106 107 108 109 |
# File 'lib/softlayer.rb', line 106 def initialize(tag, out) @out = out super(XSD::QName.new(nil, tag)) end |
Instance Method Details
#[](k) ⇒ Object
115 116 117 |
# File 'lib/softlayer.rb', line 115 def [](k) return @out[k] end |
#[]=(k, v) ⇒ Object
119 120 121 |
# File 'lib/softlayer.rb', line 119 def []=(k,v) @out[k]=v end |
#on_simple_outbound ⇒ Object
111 112 113 |
# File 'lib/softlayer.rb', line 111 def on_simple_outbound @out end |