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

LookupResponse

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

The response for Datastore.Lookup.

interface LookupResponse {
deferred?: Key[];
found?: EntityResult[];
missing?: EntityResult[];
readTime?: Date;
transaction?: Uint8Array;
}

§Properties

§
deferred?: Key[]
[src]

A list of keys that were not looked up due to resource constraints. The order of results in this field is undefined and has no relation to the order of the keys in the input.

§

Entities found as ResultType.FULL entities. The order of results in this field is undefined and has no relation to the order of the keys in the input.

§
missing?: EntityResult[]
[src]

Entities not found as ResultType.KEY_ONLY entities. The order of results in this field is undefined and has no relation to the order of the keys in the input.

§
readTime?: Date
[src]

The time at which these entities were read or found missing.

§
transaction?: Uint8Array
[src]

The identifier of the transaction that was started as part of this Lookup request. Set only when ReadOptions.new_transaction was set in LookupRequest.read_options.