ImageFileName Property
Filename and location to save the image content of a transaction or statement.
Syntax
bankstatement.getImageFileName([callback]) bankstatement.setImageFileName( imageFileName, [callback])
Default Value
""
Callback
The 'callback' parameter specifies a function which will be called when the operation completes (or an error is encountered). If the 'callback' parameter is not specified, then the method will block and will not return until the operation completes (or an error is encountered).
The callback for the getImageFileName([callback]) method is defined as:
function(err, data){ }
'err' is the error that occurred. If there was no error, then 'err' is 'null'.
'data' is the value returned by the method.
The callback for the setImageFileName([callback]) method is defined as:
function(err){ }
'err' is the error that occurred. If there was no error, then 'err' is 'null'.
'err' has 2 properties which hold detailed information:
err.code err.message
Remarks
When calling the GetImage method, the image content is returned by that method. If you want the image content to be written to disk, you can set the ImageFileName to a desired file name without specifying the type. The file type will be set automatically depending on the image type supported by the server. Possible image types are: jpeg, tiff, png, pdf.
If the filename exists, you can choose to overwrite it or not by setting the Overwrite config setting (which defaults to True).
Note: Image download is available only for OFX version 2.1.1. When this method is called, the OFXVersion is automatically set to '211'.
Data Type
String