/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Pinpoint { namespace Model { class ContactCenterActivity { public: AWS_PINPOINT_API ContactCenterActivity(); AWS_PINPOINT_API ContactCenterActivity(Aws::Utils::Json::JsonView jsonValue); AWS_PINPOINT_API ContactCenterActivity& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_PINPOINT_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The unique identifier for the next activity to perform after the this * activity.

*/ inline const Aws::String& GetNextActivity() const{ return m_nextActivity; } /** *

The unique identifier for the next activity to perform after the this * activity.

*/ inline bool NextActivityHasBeenSet() const { return m_nextActivityHasBeenSet; } /** *

The unique identifier for the next activity to perform after the this * activity.

*/ inline void SetNextActivity(const Aws::String& value) { m_nextActivityHasBeenSet = true; m_nextActivity = value; } /** *

The unique identifier for the next activity to perform after the this * activity.

*/ inline void SetNextActivity(Aws::String&& value) { m_nextActivityHasBeenSet = true; m_nextActivity = std::move(value); } /** *

The unique identifier for the next activity to perform after the this * activity.

*/ inline void SetNextActivity(const char* value) { m_nextActivityHasBeenSet = true; m_nextActivity.assign(value); } /** *

The unique identifier for the next activity to perform after the this * activity.

*/ inline ContactCenterActivity& WithNextActivity(const Aws::String& value) { SetNextActivity(value); return *this;} /** *

The unique identifier for the next activity to perform after the this * activity.

*/ inline ContactCenterActivity& WithNextActivity(Aws::String&& value) { SetNextActivity(std::move(value)); return *this;} /** *

The unique identifier for the next activity to perform after the this * activity.

*/ inline ContactCenterActivity& WithNextActivity(const char* value) { SetNextActivity(value); return *this;} private: Aws::String m_nextActivity; bool m_nextActivityHasBeenSet = false; }; } // namespace Model } // namespace Pinpoint } // namespace Aws