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

ReviewActionDetail

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

Both the AssignmentReviewReport and the HITReviewReport elements contains the ReviewActionDetail data structure. This structure is returned multiple times for each action specified in the Review Policy.

interface ReviewActionDetail {
ActionId?: string | null;
ActionName?: string | null;
CompleteTime?: Date | number | null;
ErrorCode?: string | null;
Result?: string | null;
Status?: ReviewActionStatus | null;
TargetId?: string | null;
TargetType?: string | null;
}

§Properties

§
ActionId?: string | null
[src]

The unique identifier for the action.

§
ActionName?: string | null
[src]

The nature of the action itself. The Review Policy is responsible for examining the HIT and Assignments, emitting results, and deciding which other actions will be necessary.

§
CompleteTime?: Date | number | null
[src]

The date when the action was completed.

§
ErrorCode?: string | null
[src]

Present only when the Results have a FAILED Status.

§
Result?: string | null
[src]

A description of the outcome of the review.

§
Status?: ReviewActionStatus | null
[src]

The current disposition of the action: INTENDED, SUCCEEDED, FAILED, or CANCELLED.

§
TargetId?: string | null
[src]

The specific HITId or AssignmentID targeted by the action.

§
TargetType?: string | null
[src]

The type of object in TargetId.