Class: Aws::MTurk::Types::ListQualificationRequestsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::MTurk::Types::ListQualificationRequestsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mturk/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If the previous response was incomplete (because there is more data to retrieve), Amazon Mechanical Turk returns a pagination token in the response.
-
#num_results ⇒ Integer
The number of Qualification requests on this page in the filtered results list, equivalent to the number of Qualification requests being returned by this call.
-
#qualification_requests ⇒ Array<Types::QualificationRequest>
The Qualification request.
Instance Attribute Details
#next_token ⇒ String
If the previous response was incomplete (because there is more data to retrieve), Amazon Mechanical Turk returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.
1405 1406 1407 1408 1409 1410 1411 |
# File 'lib/aws-sdk-mturk/types.rb', line 1405 class ListQualificationRequestsResponse < Struct.new( :num_results, :next_token, :qualification_requests) SENSITIVE = [] include Aws::Structure end |
#num_results ⇒ Integer
The number of Qualification requests on this page in the filtered results list, equivalent to the number of Qualification requests being returned by this call.
1405 1406 1407 1408 1409 1410 1411 |
# File 'lib/aws-sdk-mturk/types.rb', line 1405 class ListQualificationRequestsResponse < Struct.new( :num_results, :next_token, :qualification_requests) SENSITIVE = [] include Aws::Structure end |
#qualification_requests ⇒ Array<Types::QualificationRequest>
The Qualification request. The response includes one QualificationRequest element for each Qualification request returned by the query.
1405 1406 1407 1408 1409 1410 1411 |
# File 'lib/aws-sdk-mturk/types.rb', line 1405 class ListQualificationRequestsResponse < Struct.new( :num_results, :next_token, :qualification_requests) SENSITIVE = [] include Aws::Structure end |