exports_patch_files_csv {civis} | R Documentation |
Update some attributes of this CSV Export
Description
Update some attributes of this CSV Export
Usage
exports_patch_files_csv(
id,
name = NULL,
source = NULL,
destination = NULL,
include_header = NULL,
compression = NULL,
column_delimiter = NULL,
hidden = NULL,
force_multifile = NULL,
max_file_size = NULL
)
Arguments
id |
integer required. The ID of this Csv Export job. |
name |
string optional. The name of this Csv Export job. |
source |
list optional. A list containing the following elements:
|
destination |
list optional. A list containing the following elements:
|
include_header |
boolean optional. A boolean value indicating whether or not the header should be included. Defaults to true. |
compression |
string optional. The compression of the output file. Valid arguments are "gzip" and "none". Defaults to "gzip". |
column_delimiter |
string optional. The column delimiter for the output file. Valid arguments are "comma", "tab", and "pipe". Defaults to "comma". |
boolean optional. A boolean value indicating whether or not this request should be hidden. Defaults to false. | |
force_multifile |
boolean optional. Whether or not the csv should be split into multiple files. Default: false |
max_file_size |
integer optional. The max file size, in MB, created files will be. Only available when force_multifile is true. |
Value
A list containing the following elements:
id |
integer, The ID of this Csv Export job. |
name |
string, The name of this Csv Export job. |
source |
list, A list containing the following elements:
|
destination |
list, A list containing the following elements:
|
includeHeader |
boolean, A boolean value indicating whether or not the header should be included. Defaults to true. |
compression |
string, The compression of the output file. Valid arguments are "gzip" and "none". Defaults to "gzip". |
columnDelimiter |
string, The column delimiter for the output file. Valid arguments are "comma", "tab", and "pipe". Defaults to "comma". |
hidden |
boolean, A boolean value indicating whether or not this request should be hidden. Defaults to false. |
forceMultifile |
boolean, Whether or not the csv should be split into multiple files. Default: false |
maxFileSize |
integer, The max file size, in MB, created files will be. Only available when force_multifile is true. |
myPermissionLevel |
string, Your permission level on the object. One of "read", "write", or "manage". |