Class: Batchly::Request::IRequest

Inherits:
Object
  • Object
show all
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

Instance Attribute Summary collapse

Instance Attribute Details

#content_pathObject

Current working directory string



17
18
19
# File 'lib/batchly-sdk/request/irequest.rb', line 17

def content_path
  @content_path
end

#idObject

id for the Unit of Work string



11
12
13
# File 'lib/batchly-sdk/request/irequest.rb', line 11

def id
  @id
end

#parametersObject

Values for parameters configured via UI hashTable



14
15
16
# File 'lib/batchly-sdk/request/irequest.rb', line 14

def parameters
  @parameters
end