The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Paws::MTurk::HIT

USAGE

This class represents one of two things:

Arguments in a call to a service

Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object.

As an example, if Att1 is expected to be a Paws::MTurk::HIT object:

  $service_obj->Method(Att1 => { AssignmentDurationInSeconds => $value, ..., Title => $value  });

Results returned from an API call

Use accessors for each attribute. If Att1 is expected to be an Paws::MTurk::HIT object:

  $result = $service_obj->Method(...);
  $result->Att1->AssignmentDurationInSeconds

DESCRIPTION

The HIT data structure represents a single HIT, including all the information necessary for a Worker to accept and complete the HIT.

ATTRIBUTES

AssignmentDurationInSeconds => Int

  The length of time, in seconds, that a Worker has to complete the HIT
after accepting it.

AutoApprovalDelayInSeconds => Int

  The amount of time, in seconds, after the Worker submits an assignment
for the HIT that the results are automatically approved by Amazon
Mechanical Turk. This is the amount of time the Requester has to reject
an assignment submitted by a Worker before the assignment is
auto-approved and the Worker is paid.

CreationTime => Str

  The date and time the HIT was created.

Description => Str

  A general description of the HIT.

Expiration => Str

  The date and time the HIT expires.

HITGroupId => Str

  The ID of the HIT Group of this HIT.

HITId => Str

  A unique identifier for the HIT.

HITLayoutId => Str

  The ID of the HIT Layout of this HIT.

HITReviewStatus => Str

  Indicates the review status of the HIT. Valid Values are NotReviewed |
MarkedForReview | ReviewedAppropriate | ReviewedInappropriate.

HITStatus => Str

  The status of the HIT and its assignments. Valid Values are Assignable
| Unassignable | Reviewable | Reviewing | Disposed.

HITTypeId => Str

  The ID of the HIT type of this HIT

Keywords => Str

  One or more words or phrases that describe the HIT, separated by
commas. Search terms similar to the keywords of a HIT are more likely
to have the HIT in the search results.

MaxAssignments => Int

  The number of times the HIT can be accepted and completed before the
HIT becomes unavailable.

NumberOfAssignmentsAvailable => Int

  The number of assignments for this HIT that are available for Workers
to accept.

NumberOfAssignmentsCompleted => Int

  The number of assignments for this HIT that have been approved or
rejected.

NumberOfAssignmentsPending => Int

  The number of assignments for this HIT that are being previewed or have
been accepted by Workers, but have not yet been submitted, returned, or
abandoned.

QualificationRequirements => ArrayRef[Paws::MTurk::QualificationRequirement]

  Conditions that a Worker's Qualifications must meet in order to accept
the HIT. A HIT can have between zero and ten Qualification
requirements. All requirements must be met in order for a Worker to
accept the HIT. Additionally, other actions can be restricted using the
C<ActionsGuarded> field on each C<QualificationRequirement> structure.

Question => Str

  The data the Worker completing the HIT uses produce the results. This
is either either a QuestionForm, HTMLQuestion or an ExternalQuestion
data structure.

RequesterAnnotation => Str

  An arbitrary data field the Requester who created the HIT can use. This
field is visible only to the creator of the HIT.

Reward => Str

Title => Str

  The title of the HIT.

SEE ALSO

This class forms part of Paws, describing an object used in Paws::MTurk

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues