Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DetectedCsvFormatDescriptor

import type { DetectedCsvFormatDescriptor } from "https://aws-api.deno.dev/v0.4/services/lookoutmetrics.ts?docs=full";

Properties of an inferred CSV format.

interface DetectedCsvFormatDescriptor {
Charset?: DetectedField | null;
ContainsHeader?: DetectedField | null;
Delimiter?: DetectedField | null;
FileCompression?: DetectedField | null;
HeaderList?: DetectedField | null;
QuoteSymbol?: DetectedField | null;
}

§Properties

§
Charset?: DetectedField | null
[src]

The format's charset.

§
ContainsHeader?: DetectedField | null
[src]

Whether the format includes a header.

§
Delimiter?: DetectedField | null
[src]

The format's delimiter.

§
FileCompression?: DetectedField | null
[src]

The format's file compression.

§
HeaderList?: DetectedField | null
[src]

The format's header list.

§
QuoteSymbol?: DetectedField | null
[src]

The format's quote symbol.