Struct rusoto_mturk::ReviewActionDetail [] [src]

pub struct ReviewActionDetail {
    pub action_id: Option<String>,
    pub action_name: Option<String>,
    pub complete_time: Option<f64>,
    pub error_code: Option<String>,
    pub result: Option<String>,
    pub status: Option<String>,
    pub target_id: Option<String>,
    pub target_type: Option<String>,
}

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.

Fields

The unique identifier for the action.

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.

The date when the action was completed.

Present only when the Results have a FAILED Status.

A description of the outcome of the review.

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

The specific HITId or AssignmentID targeted by the action.

The type of object in TargetId.

Trait Implementations

impl Default for ReviewActionDetail
[src]

Returns the "default value" for a type. Read more

impl Debug for ReviewActionDetail
[src]

Formats the value using the given formatter.

impl Clone for ReviewActionDetail
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more