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

GoogleCloudVisionV1p4beta1BatchOperationMetadata

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

Metadata for the batch operations such as the current state. This is included in the metadata field of the Operation returned by the GetOperation call of the google::longrunning::Operations service.

interface GoogleCloudVisionV1p4beta1BatchOperationMetadata {
endTime?: Date;
state?:
| "STATE_UNSPECIFIED"
| "PROCESSING"
| "SUCCESSFUL"
| "FAILED"
| "CANCELLED";
submitTime?: Date;
}

§Properties

§
endTime?: Date
[src]

The time when the batch request is finished and google.longrunning.Operation.done is set to true.

§
state?: "STATE_UNSPECIFIED" | "PROCESSING" | "SUCCESSFUL" | "FAILED" | "CANCELLED"
[src]

The current state of the batch operation.

§
submitTime?: Date
[src]

The time when the batch request was submitted to the server.