class Batchly::Request::DelimitedFileRequest

DelimitedFileRequest is a type of request that supports csv and other delmited type of source files Request holds the fields as an array. The fields are column values from a single row

Attributes

content_path[RW]

Path for loading additional content - Path to container from where code is executed string

fields[RW]

Fields contain the individual columns of a delimited row array

id[RW]

Unique id of the Unit of Work string

parameters[RW]

parameters that has been configured in portal hashTable

Public Class Methods

new(id = nil, parameters = nil, fields = nil, content_path = nil) click to toggle source
# File lib/batchly-sdk/request/delimited_request.rb, line 11
def initialize(id = nil, parameters = nil, fields = nil, content_path = nil)
  @id = id
  @parameters = parameters
  @fields = fields
  @content_path = content_path
end