Class: Batchly::Request::IRequest
- Inherits:
-
Object
- Object
- Batchly::Request::IRequest
- Defined in:
- lib/batchly-sdk/request/irequest.rb
Overview
IRequest is the base interface for all request types Use the actual implementations while duck typing - File, Delimited, Db or Queue
Direct Known Subclasses
Instance Attribute Summary collapse
-
#content_path ⇒ Object
Current working directory
string
. -
#id ⇒ Object
id for the Unit of Work
string
. -
#parameters ⇒ Object
Values for parameters configured via UI
hashTable
.
Instance Attribute Details
#content_path ⇒ Object
Current working directory string
17 18 19 |
# File 'lib/batchly-sdk/request/irequest.rb', line 17 def content_path @content_path end |
#id ⇒ Object
id for the Unit of Work string
11 12 13 |
# File 'lib/batchly-sdk/request/irequest.rb', line 11 def id @id end |
#parameters ⇒ Object
Values for parameters configured via UI hashTable
14 15 16 |
# File 'lib/batchly-sdk/request/irequest.rb', line 14 def parameters @parameters end |