DatasetCsvOptions

data class DatasetCsvOptions(val delimiter: String? = null, val headerRow: Boolean? = null)

Csv options

Constructors

Link copied to clipboard
constructor(delimiter: String? = null, headerRow: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val delimiter: String? = null

A single character that specifies the delimiter being used in the CSV file.

Link copied to clipboard
val headerRow: Boolean? = null

A variable that specifies whether the first row in the file is parsed as the header. If this value is false, column names are auto-generated.