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

NamedProperty

import type { NamedProperty } from "https://googleapis.deno.dev/v1/cloudsearch:v1.ts";

A typed name-value pair for structured data. The type of the value should be the same as the registered type for the name property in the object definition of objectType.

interface NamedProperty {
booleanValue?: boolean;
dateValues?: DateValues;
doubleValues?: DoubleValues;
enumValues?: EnumValues;
htmlValues?: HtmlValues;
integerValues?: IntegerValues;
name?: string;
objectValues?: ObjectValues;
textValues?: TextValues;
timestampValues?: TimestampValues;
}

§Properties

§
booleanValue?: boolean
[src]
§
dateValues?: DateValues
[src]
§
doubleValues?: DoubleValues
[src]
§
enumValues?: EnumValues
[src]
§
htmlValues?: HtmlValues
[src]
§
integerValues?: IntegerValues
[src]
§
name?: string
[src]

The name of the property. This name should correspond to the name of the property that was registered for object definition in the schema. The maximum allowable length for this property is 256 characters.

§
objectValues?: ObjectValues
[src]
§
textValues?: TextValues
[src]
§
timestampValues?: TimestampValues
[src]