org.jetbrains.kotlinx.ggdsl.ir.data.DataSource.kt Maven / Gradle / Ivy
package org.jetbrains.kotlinx.ggdsl.ir.data
import kotlin.reflect.KProperty
import kotlin.reflect.KType
// todo nullable?
/**
* A source of data, i.e. a pointer to a column with the corresponding name.
*
* @param T a type of data
* @property id the name of source in a dataset
* @property type reified type of data
*/
data class DataSource(val id: String, val type: KType)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy