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

WorkerBlock

import type { WorkerBlock } from "https://aws-api.deno.dev/v0.4/services/mturk.ts?docs=full";

The WorkerBlock data structure represents a Worker who has been blocked. It has two elements: the WorkerId and the Reason for the block.

interface WorkerBlock {
Reason?: string | null;
WorkerId?: string | null;
}

§Properties

§
Reason?: string | null
[src]

A message explaining the reason the Worker was blocked.

§
WorkerId?: string | null
[src]

The ID of the Worker who accepted the HIT.