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

DataConnectProperties

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

Data Connect specific properties for a path under response.data.

interface DataConnectProperties {
entityId?: string;
entityIds?: string[];
maxAge?: number;
path?: any[];
}

§Properties

§
entityId?: string
[src]

A single Entity ID. Set if the path points to a single entity.

§
entityIds?: string[]
[src]

A list of Entity IDs. Set if the path points to an array of entities. An ID is present for each element of the array at the corresponding index.

§
maxAge?: number
[src]

The server-suggested duration before data under path is considered stale.

§
path?: any[]
[src]

The path under response.data where the rest of the fields apply. Each element may be a string (field name) or number (array index). The root of response.data is denoted by the empty list [].