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

Attempt

import type { Attempt } from "https://googleapis.deno.dev/v1/cloudtasks:v2.ts";

The status of a task attempt.

interface Attempt {
dispatchTime?: Date;
responseStatus?: Status;
responseTime?: Date;
scheduleTime?: Date;
}

§Properties

§
dispatchTime?: Date
[src]

Output only. The time that this attempt was dispatched. dispatch_time will be truncated to the nearest microsecond.

§
responseStatus?: Status
[src]

Output only. The response from the worker for this attempt. If response_time is unset, then the task has not been attempted or is currently running and the response_status field is meaningless.

§
responseTime?: Date
[src]

Output only. The time that this attempt response was received. response_time will be truncated to the nearest microsecond.

§
scheduleTime?: Date
[src]

Output only. The time that this attempt was scheduled. schedule_time will be truncated to the nearest microsecond.