SqlQuery

data class SqlQuery(val select: Select, val from: From, val where: Where? = null, val remote: Remote? = null, val timeRange: TimeRange? = null, val archiveNum: ArchiveNum? = null, val sortBy: SortBy? = null, val groupBy: GroupBy? = null, val limit: Limit? = null, val filterLang: FilterLang? = null)

data class, в котором хранится разобранный SqlQuery-запрос

Constructors

Link copied to clipboard
constructor(select: Select, from: From, where: Where? = null, remote: Remote? = null, timeRange: TimeRange? = null, archiveNum: ArchiveNum? = null, sortBy: SortBy? = null, groupBy: GroupBy? = null, limit: Limit? = null, filterLang: FilterLang? = null)

Properties

Link copied to clipboard
val archiveNum: ArchiveNum? = null
Link copied to clipboard
val filterLang: FilterLang? = null
Link copied to clipboard
val from: From
Link copied to clipboard
val groupBy: GroupBy? = null
Link copied to clipboard
val limit: Limit? = null
Link copied to clipboard
val remote: Remote? = null
Link copied to clipboard
Link copied to clipboard
val sortBy: SortBy? = null
Link copied to clipboard
val timeRange: TimeRange? = null
Link copied to clipboard
val where: Where? = null