Package version:

Interface BlobQueryArrowField

Describe a field in BlobQueryArrowConfiguration.

interface BlobQueryArrowField {
    name?: string;
    precision?: number;
    scale?: number;
    type: BlobQueryArrowFieldType;
}

Properties

name?: string

The name of the field.

precision?: number

The precision of the field. Required if type is "decimal".

scale?: number

The scale of the field. Required if type is is "decimal".

The type of the field.