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

DoubleOptions

import type { DoubleOptions } from "https://aws-api.deno.dev/v0.3/services/cloudsearch.ts?docs=full";

Options for a double-precision 64-bit floating point field. Present if IndexFieldType specifies the field is of type double. All options are enabled by default.

interface DoubleOptions {
DefaultValue?: number | null;
FacetEnabled?: boolean | null;
ReturnEnabled?: boolean | null;
SearchEnabled?: boolean | null;
SortEnabled?: boolean | null;
SourceField?: string | null;
}

§Properties

§
DefaultValue?: number | null
[src]

A value to use for the field if the field isn't specified for a document. This can be important if you are using the field in an expression and that field is not present in every document.

§
FacetEnabled?: boolean | null
[src]

Whether facet information can be returned for the field.

§
ReturnEnabled?: boolean | null
[src]

Whether the contents of the field can be returned in the search results.

§
SearchEnabled?: boolean | null
[src]

Whether the contents of the field are searchable.

§
SortEnabled?: boolean | null
[src]

Whether the field can be used to sort the search results.

§
SourceField?: string | null
[src]

The name of the source field to map to the field.