TableExternalDataConfigurationCsvOptions

data class TableExternalDataConfigurationCsvOptions(val allowJaggedRows: Boolean? = null, val allowQuotedNewlines: Boolean? = null, val encoding: String? = null, val fieldDelimiter: String? = null, val quote: String, val skipLeadingRows: Int? = null)

Constructors

Link copied to clipboard
fun TableExternalDataConfigurationCsvOptions(allowJaggedRows: Boolean? = null, allowQuotedNewlines: Boolean? = null, encoding: String? = null, fieldDelimiter: String? = null, quote: String, skipLeadingRows: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Indicates if BigQuery should accept rows that are missing trailing optional columns.

Link copied to clipboard

Indicates if BigQuery should allow quoted data sections that contain newline characters in a CSV file. The default value is false.

Link copied to clipboard
val encoding: String? = null

The character encoding of the data. The supported values are UTF-8 or ISO-8859-1.

Link copied to clipboard
val fieldDelimiter: String? = null

The separator for fields in a CSV file.

Link copied to clipboard
Link copied to clipboard
val skipLeadingRows: Int? = null

The number of rows at the top of a CSV file that BigQuery will skip when reading the data.