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

BatchWriteResponse

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

The result of applying a batch of mutations.

interface BatchWriteResponse {
commitTimestamp?: Date;
indexes?: number[];
status?: Status;
}

§Properties

§
commitTimestamp?: Date
[src]

The commit timestamp of the transaction that applied this batch. Present if status is OK, absent otherwise.

§
indexes?: number[]
[src]

The mutation groups applied in this batch. The values index into the mutation_groups field in the corresponding BatchWriteRequest.

§
status?: Status
[src]

An OK status indicates success. Any other status indicates a failure.