kumoai.Dtype#

class kumoai.Dtype[source]#

Bases: StrEnum

The data type of a column.

A data type represents how the data of a column is physically stored. Data types can be passed to methods in the SDK as strings (e.g. "int").

bool#

A boolean column.

int#

An integer column.

float#

An floating-point column.

date#

A column holding a date.

time#

A column holding a timestamp.

floatlist#

A column holding a list of floating-point values.

intlist#

A column holding a list of integers.

binary#

A column containing binary data.

stringlist#

A column containing list of strings.