class Batchly::Request::FileRequest

FileRequest is a type of request that supports file storage Request holds the location of the file thats available for your processing

Attributes

content_path[RW]

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

id[RW]

Unique id of the Unit of Work string

location[RW]

Location of the file on disk string

parameters[RW]

parameters that has been configured in portal hashTable

Public Class Methods

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