Class CsvExportOptions (0.6.0)

CsvExportOptions(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Options for exporting data in CSV format.

Attributes

Name Description
select_query str
Required. The SELECT query used to extract the data.
field_delimiter str
Optional. Specifies the character that separates columns within each row (line) of the file. The default is comma. The value of this argument has to be a character in Hex ASCII Code.
quote_character str
Optional. Specifies the quoting character to be used when a data value is quoted. The default is double-quote. The value of this argument has to be a character in Hex ASCII Code.
escape_character str
Optional. Specifies the character that should appear before a data character that needs to be escaped. The default is the same as quote character. The value of this argument has to be a character in Hex ASCII Code.