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

CommitResponse

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

The response for Datastore.Commit.

interface CommitResponse {
commitTime?: Date;
indexUpdates?: number;
mutationResults?: MutationResult[];
}

§Properties

§
commitTime?: Date
[src]

The transaction commit timestamp. Not set for non-transactional commits.

§
indexUpdates?: number
[src]

The number of index entries updated during the commit, or zero if none were updated.

§
mutationResults?: MutationResult[]
[src]

The result of performing the mutations. The i-th mutation result corresponds to the i-th mutation in the request.