DownloadDocument
Downloads a file from the user's Google Drive.
Input
| Name | Type | Description |
| Id | String | The Id of the resource to be downloaded. |
| FileFormat | String | The file format to be applied when saving the file, such as text/plain.
The default value is application/vnd.openxmlformats-officedocument.spreadsheetml.sheet. |
| LocalFile | String | The local file path including the file name for the location where the file will be saved on disk. Leave empty to keep the file in memory. |
| Encoding | String | If the LocalFile input is left empty, the data will be output to FileData in the specified encoding.
The allowed values are NONE, BASE64. The default value is BASE64. |
| Overwrite | String | What to do when downloaded file exists. Set true to overwrite.
The allowed values are true, false. The default value is false. |
Result Set Columns
| Name | Type | Description |
| FileData | String | If the LocalFile input is empty, file data will be output in the format specified by the Encoding input. |
| Success | String | This value shows a boolean indication of whether the operation was successful or not. |