Class: Aws::MTurk::Types::Qualification
- Inherits:
-
Struct
- Object
- Struct
- Aws::MTurk::Types::Qualification
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mturk/types.rb
Overview
The Qualification data structure represents a Qualification assigned to a user, including the Qualification type and the value (score).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#grant_time ⇒ Time
The date and time the Qualification was granted to the Worker.
-
#integer_value ⇒ Integer
The value (score) of the Qualification, if the Qualification has an integer value.
-
#locale_value ⇒ Types::Locale
The Locale data structure represents a geographical region or location.
-
#qualification_type_id ⇒ String
The ID of the Qualification type for the Qualification.
-
#status ⇒ String
The status of the Qualification.
-
#worker_id ⇒ String
The ID of the Worker who possesses the Qualification.
Instance Attribute Details
#grant_time ⇒ Time
The date and time the Qualification was granted to the Worker. If the Worker’s Qualification was revoked, and then re-granted based on a new Qualification request, GrantTime is the date and time of the last call to the AcceptQualificationRequest operation.
1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 |
# File 'lib/aws-sdk-mturk/types.rb', line 1937 class Qualification < Struct.new( :qualification_type_id, :worker_id, :grant_time, :integer_value, :locale_value, :status) SENSITIVE = [] include Aws::Structure end |
#integer_value ⇒ Integer
The value (score) of the Qualification, if the Qualification has an integer value.
1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 |
# File 'lib/aws-sdk-mturk/types.rb', line 1937 class Qualification < Struct.new( :qualification_type_id, :worker_id, :grant_time, :integer_value, :locale_value, :status) SENSITIVE = [] include Aws::Structure end |
#locale_value ⇒ Types::Locale
The Locale data structure represents a geographical region or location.
1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 |
# File 'lib/aws-sdk-mturk/types.rb', line 1937 class Qualification < Struct.new( :qualification_type_id, :worker_id, :grant_time, :integer_value, :locale_value, :status) SENSITIVE = [] include Aws::Structure end |
#qualification_type_id ⇒ String
The ID of the Qualification type for the Qualification.
1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 |
# File 'lib/aws-sdk-mturk/types.rb', line 1937 class Qualification < Struct.new( :qualification_type_id, :worker_id, :grant_time, :integer_value, :locale_value, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the Qualification. Valid values are Granted | Revoked.
1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 |
# File 'lib/aws-sdk-mturk/types.rb', line 1937 class Qualification < Struct.new( :qualification_type_id, :worker_id, :grant_time, :integer_value, :locale_value, :status) SENSITIVE = [] include Aws::Structure end |
#worker_id ⇒ String
The ID of the Worker who possesses the Qualification.
1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 |
# File 'lib/aws-sdk-mturk/types.rb', line 1937 class Qualification < Struct.new( :qualification_type_id, :worker_id, :grant_time, :integer_value, :locale_value, :status) SENSITIVE = [] include Aws::Structure end |