/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides information about the configuration and other settings for all the
* campaigns that are associated with an application.See Also:
AWS
* API Reference
An array of responses, one for each campaign that's associated with the * application.
*/ inline const Aws::VectorAn array of responses, one for each campaign that's associated with the * application.
*/ inline bool ItemHasBeenSet() const { return m_itemHasBeenSet; } /** *An array of responses, one for each campaign that's associated with the * application.
*/ inline void SetItem(const Aws::VectorAn array of responses, one for each campaign that's associated with the * application.
*/ inline void SetItem(Aws::VectorAn array of responses, one for each campaign that's associated with the * application.
*/ inline CampaignsResponse& WithItem(const Aws::VectorAn array of responses, one for each campaign that's associated with the * application.
*/ inline CampaignsResponse& WithItem(Aws::VectorAn array of responses, one for each campaign that's associated with the * application.
*/ inline CampaignsResponse& AddItem(const CampaignResponse& value) { m_itemHasBeenSet = true; m_item.push_back(value); return *this; } /** *An array of responses, one for each campaign that's associated with the * application.
*/ inline CampaignsResponse& AddItem(CampaignResponse&& 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 CampaignsResponse& 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 CampaignsResponse& 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 CampaignsResponse& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::Vector