/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace MTurk { namespace Model { /** */ class CreateAdditionalAssignmentsForHITRequest : public MTurkRequest { public: AWS_MTURK_API CreateAdditionalAssignmentsForHITRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "CreateAdditionalAssignmentsForHIT"; } AWS_MTURK_API Aws::String SerializePayload() const override; AWS_MTURK_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The ID of the HIT to extend.

*/ inline const Aws::String& GetHITId() const{ return m_hITId; } /** *

The ID of the HIT to extend.

*/ inline bool HITIdHasBeenSet() const { return m_hITIdHasBeenSet; } /** *

The ID of the HIT to extend.

*/ inline void SetHITId(const Aws::String& value) { m_hITIdHasBeenSet = true; m_hITId = value; } /** *

The ID of the HIT to extend.

*/ inline void SetHITId(Aws::String&& value) { m_hITIdHasBeenSet = true; m_hITId = std::move(value); } /** *

The ID of the HIT to extend.

*/ inline void SetHITId(const char* value) { m_hITIdHasBeenSet = true; m_hITId.assign(value); } /** *

The ID of the HIT to extend.

*/ inline CreateAdditionalAssignmentsForHITRequest& WithHITId(const Aws::String& value) { SetHITId(value); return *this;} /** *

The ID of the HIT to extend.

*/ inline CreateAdditionalAssignmentsForHITRequest& WithHITId(Aws::String&& value) { SetHITId(std::move(value)); return *this;} /** *

The ID of the HIT to extend.

*/ inline CreateAdditionalAssignmentsForHITRequest& WithHITId(const char* value) { SetHITId(value); return *this;} /** *

The number of additional assignments to request for this HIT.

*/ inline int GetNumberOfAdditionalAssignments() const{ return m_numberOfAdditionalAssignments; } /** *

The number of additional assignments to request for this HIT.

*/ inline bool NumberOfAdditionalAssignmentsHasBeenSet() const { return m_numberOfAdditionalAssignmentsHasBeenSet; } /** *

The number of additional assignments to request for this HIT.

*/ inline void SetNumberOfAdditionalAssignments(int value) { m_numberOfAdditionalAssignmentsHasBeenSet = true; m_numberOfAdditionalAssignments = value; } /** *

The number of additional assignments to request for this HIT.

*/ inline CreateAdditionalAssignmentsForHITRequest& WithNumberOfAdditionalAssignments(int value) { SetNumberOfAdditionalAssignments(value); return *this;} /** *

A unique identifier for this request, which allows you to retry the call on * error without extending the HIT multiple times. This is useful in cases such as * network timeouts where it is unclear whether or not the call succeeded on the * server. If the extend HIT already exists in the system from a previous call * using the same UniqueRequestToken, subsequent calls will return an * error with a message containing the request ID.

*/ inline const Aws::String& GetUniqueRequestToken() const{ return m_uniqueRequestToken; } /** *

A unique identifier for this request, which allows you to retry the call on * error without extending the HIT multiple times. This is useful in cases such as * network timeouts where it is unclear whether or not the call succeeded on the * server. If the extend HIT already exists in the system from a previous call * using the same UniqueRequestToken, subsequent calls will return an * error with a message containing the request ID.

*/ inline bool UniqueRequestTokenHasBeenSet() const { return m_uniqueRequestTokenHasBeenSet; } /** *

A unique identifier for this request, which allows you to retry the call on * error without extending the HIT multiple times. This is useful in cases such as * network timeouts where it is unclear whether or not the call succeeded on the * server. If the extend HIT already exists in the system from a previous call * using the same UniqueRequestToken, subsequent calls will return an * error with a message containing the request ID.

*/ inline void SetUniqueRequestToken(const Aws::String& value) { m_uniqueRequestTokenHasBeenSet = true; m_uniqueRequestToken = value; } /** *

A unique identifier for this request, which allows you to retry the call on * error without extending the HIT multiple times. This is useful in cases such as * network timeouts where it is unclear whether or not the call succeeded on the * server. If the extend HIT already exists in the system from a previous call * using the same UniqueRequestToken, subsequent calls will return an * error with a message containing the request ID.

*/ inline void SetUniqueRequestToken(Aws::String&& value) { m_uniqueRequestTokenHasBeenSet = true; m_uniqueRequestToken = std::move(value); } /** *

A unique identifier for this request, which allows you to retry the call on * error without extending the HIT multiple times. This is useful in cases such as * network timeouts where it is unclear whether or not the call succeeded on the * server. If the extend HIT already exists in the system from a previous call * using the same UniqueRequestToken, subsequent calls will return an * error with a message containing the request ID.

*/ inline void SetUniqueRequestToken(const char* value) { m_uniqueRequestTokenHasBeenSet = true; m_uniqueRequestToken.assign(value); } /** *

A unique identifier for this request, which allows you to retry the call on * error without extending the HIT multiple times. This is useful in cases such as * network timeouts where it is unclear whether or not the call succeeded on the * server. If the extend HIT already exists in the system from a previous call * using the same UniqueRequestToken, subsequent calls will return an * error with a message containing the request ID.

*/ inline CreateAdditionalAssignmentsForHITRequest& WithUniqueRequestToken(const Aws::String& value) { SetUniqueRequestToken(value); return *this;} /** *

A unique identifier for this request, which allows you to retry the call on * error without extending the HIT multiple times. This is useful in cases such as * network timeouts where it is unclear whether or not the call succeeded on the * server. If the extend HIT already exists in the system from a previous call * using the same UniqueRequestToken, subsequent calls will return an * error with a message containing the request ID.

*/ inline CreateAdditionalAssignmentsForHITRequest& WithUniqueRequestToken(Aws::String&& value) { SetUniqueRequestToken(std::move(value)); return *this;} /** *

A unique identifier for this request, which allows you to retry the call on * error without extending the HIT multiple times. This is useful in cases such as * network timeouts where it is unclear whether or not the call succeeded on the * server. If the extend HIT already exists in the system from a previous call * using the same UniqueRequestToken, subsequent calls will return an * error with a message containing the request ID.

*/ inline CreateAdditionalAssignmentsForHITRequest& WithUniqueRequestToken(const char* value) { SetUniqueRequestToken(value); return *this;} private: Aws::String m_hITId; bool m_hITIdHasBeenSet = false; int m_numberOfAdditionalAssignments; bool m_numberOfAdditionalAssignmentsHasBeenSet = false; Aws::String m_uniqueRequestToken; bool m_uniqueRequestTokenHasBeenSet = false; }; } // namespace Model } // namespace MTurk } // namespace Aws