DatasetExcelOptions

data class DatasetExcelOptions(val headerRow: Boolean? = null, val sheetIndexes: List<Int>? = null, val sheetNames: List<String>? = null)

Constructors

Link copied to clipboard
constructor(headerRow: Boolean? = null, sheetIndexes: List<Int>? = null, sheetNames: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

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.

Link copied to clipboard
val sheetIndexes: List<Int>? = null

One or more sheet numbers in the Excel file that will be included in the dataset.

Link copied to clipboard
val sheetNames: List<String>? = null

One or more named sheets in the Excel file that will be included in the dataset.