Struct rusoto_mturk::ReviewResultDetail [] [src]

pub struct ReviewResultDetail {
    pub action_id: Option<String>,
    pub key: Option<String>,
    pub question_id: Option<String>,
    pub subject_id: Option<String>,
    pub subject_type: Option<String>,
    pub value: Option<String>,
}

This data structure is returned multiple times for each result specified in the Review Policy.

Fields

A unique identifier of the Review action result.

Key identifies the particular piece of reviewed information.

Specifies the QuestionId the result is describing. Depending on whether the TargetType is a HIT or Assignment this results could specify multiple values. If TargetType is HIT and QuestionId is absent, then the result describes results of the HIT, including the HIT agreement score. If ObjectType is Assignment and QuestionId is absent, then the result describes the Worker's performance on the HIT.

The HITID or AssignmentId about which this result was taken. Note that HIT-level Review Policies will often emit results about both the HIT itself and its Assignments, while Assignment-level review policies generally only emit results about the Assignment itself.

The type of the object from the SubjectId field.

The values of Key provided by the review policies you have selected.

Trait Implementations

impl Default for ReviewResultDetail
[src]

[src]

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

impl Debug for ReviewResultDetail
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ReviewResultDetail
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations