/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides information about the activities that were performed by a
* campaign.See Also:
AWS
* API Reference
An array of responses, one for each activity that was performed by the * campaign.
*/ inline const Aws::VectorAn array of responses, one for each activity that was performed by the * campaign.
*/ inline bool ItemHasBeenSet() const { return m_itemHasBeenSet; } /** *An array of responses, one for each activity that was performed by the * campaign.
*/ inline void SetItem(const Aws::VectorAn array of responses, one for each activity that was performed by the * campaign.
*/ inline void SetItem(Aws::VectorAn array of responses, one for each activity that was performed by the * campaign.
*/ inline ActivitiesResponse& WithItem(const Aws::VectorAn array of responses, one for each activity that was performed by the * campaign.
*/ inline ActivitiesResponse& WithItem(Aws::VectorAn array of responses, one for each activity that was performed by the * campaign.
*/ inline ActivitiesResponse& AddItem(const ActivityResponse& value) { m_itemHasBeenSet = true; m_item.push_back(value); return *this; } /** *An array of responses, one for each activity that was performed by the * campaign.
*/ inline ActivitiesResponse& AddItem(ActivityResponse&& value) { m_itemHasBeenSet = true; m_item.push_back(std::move(value)); return *this; } /** *The string to use in a subsequent request to get the next page of results in * a paginated response. This value is null if there are no additional pages.
*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *The string to use in a subsequent request to get the next page of results in * a paginated response. This value is null if there are no additional pages.
*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *The string to use in a subsequent request to get the next page of results in * a paginated response. This value is null if there are no additional pages.
*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *The string to use in a subsequent request to get the next page of results in * a paginated response. This value is null if there are no additional pages.
*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *The string to use in a subsequent request to get the next page of results in * a paginated response. This value is null if there are no additional pages.
*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *The string to use in a subsequent request to get the next page of results in * a paginated response. This value is null if there are no additional pages.
*/ inline ActivitiesResponse& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *The string to use in a subsequent request to get the next page of results in * a paginated response. This value is null if there are no additional pages.
*/ inline ActivitiesResponse& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *The string to use in a subsequent request to get the next page of results in * a paginated response. This value is null if there are no additional pages.
*/ inline ActivitiesResponse& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::Vector