Class: SendCompleteResult
- Inherits:
-
Object
- Object
- SendCompleteResult
- Defined in:
- lib/meshx-plugin-sdk.rb
Instance Attribute Summary collapse
-
#error ⇒ Object
Returns the value of attribute error.
-
#exit_code ⇒ Object
Returns the value of attribute exit_code.
-
#message ⇒ Object
Returns the value of attribute message.
Instance Method Summary collapse
-
#initialize(response) ⇒ SendCompleteResult
constructor
A new instance of SendCompleteResult.
Constructor Details
#initialize(response) ⇒ SendCompleteResult
Returns a new instance of SendCompleteResult.
306 307 308 309 310 |
# File 'lib/meshx-plugin-sdk.rb', line 306 def initialize(response) @error = response.error @exit_code = response.exit_code = response.payload end |
Instance Attribute Details
#error ⇒ Object
Returns the value of attribute error.
304 305 306 |
# File 'lib/meshx-plugin-sdk.rb', line 304 def error @error end |
#exit_code ⇒ Object
Returns the value of attribute exit_code.
304 305 306 |
# File 'lib/meshx-plugin-sdk.rb', line 304 def exit_code @exit_code end |
#message ⇒ Object
Returns the value of attribute message.
304 305 306 |
# File 'lib/meshx-plugin-sdk.rb', line 304 def end |