Class: SendFolderResult
- Inherits:
-
Object
- Object
- SendFolderResult
- 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) ⇒ SendFolderResult
constructor
A new instance of SendFolderResult.
Constructor Details
#initialize(response) ⇒ SendFolderResult
Returns a new instance of SendFolderResult.
296 297 298 299 300 |
# File 'lib/meshx-plugin-sdk.rb', line 296 def initialize(response) @error = response.error @exit_code = response.exit_code @message = response.payload end |
Instance Attribute Details
#error ⇒ Object
Returns the value of attribute error.
294 295 296 |
# File 'lib/meshx-plugin-sdk.rb', line 294 def error @error end |
#exit_code ⇒ Object
Returns the value of attribute exit_code.
294 295 296 |
# File 'lib/meshx-plugin-sdk.rb', line 294 def exit_code @exit_code end |
#message ⇒ Object
Returns the value of attribute message.
294 295 296 |
# File 'lib/meshx-plugin-sdk.rb', line 294 def @message end |