QueryGenerationTable¶
Structure Class¶
QueryGenerationTable
dataclass
¶
Contains information about a table for the query engine to consider.
Attributes¶
columns
class-attribute
instance-attribute
¶
columns: list[QueryGenerationColumn] | None = None
An array of objects, each of which defines information about a column in the table.
description
class-attribute
instance-attribute
¶
description: str | None = None
A description of the table that helps the query engine understand the contents of the table.
inclusion
class-attribute
instance-attribute
¶
inclusion: IncludeExclude | None = None
Specifies whether to include or exclude the table during query
generation. If you specify EXCLUDE, the table will be ignored. If you
specify INCLUDE, all other tables will be ignored.
name
instance-attribute
¶
name: str
The name of the table for which the other fields in this object apply.