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.
309 310 311 312 313 |
# File 'lib/meshx-plugin-sdk.rb', line 309 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.
307 308 309 |
# File 'lib/meshx-plugin-sdk.rb', line 307 def error @error end |
#exit_code ⇒ Object
Returns the value of attribute exit_code.
307 308 309 |
# File 'lib/meshx-plugin-sdk.rb', line 307 def exit_code @exit_code end |
#message ⇒ Object
Returns the value of attribute message.
307 308 309 |
# File 'lib/meshx-plugin-sdk.rb', line 307 def end |