/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace ConnectCases { namespace Model { /** *

Details of what related item data is published through the case event * stream.

See Also:

AWS * API Reference

*/ class RelatedItemEventIncludedData { public: AWS_CONNECTCASES_API RelatedItemEventIncludedData(); AWS_CONNECTCASES_API RelatedItemEventIncludedData(Aws::Utils::Json::JsonView jsonValue); AWS_CONNECTCASES_API RelatedItemEventIncludedData& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_CONNECTCASES_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Details of what related item data is published through the case event * stream.

*/ inline bool GetIncludeContent() const{ return m_includeContent; } /** *

Details of what related item data is published through the case event * stream.

*/ inline bool IncludeContentHasBeenSet() const { return m_includeContentHasBeenSet; } /** *

Details of what related item data is published through the case event * stream.

*/ inline void SetIncludeContent(bool value) { m_includeContentHasBeenSet = true; m_includeContent = value; } /** *

Details of what related item data is published through the case event * stream.

*/ inline RelatedItemEventIncludedData& WithIncludeContent(bool value) { SetIncludeContent(value); return *this;} private: bool m_includeContent; bool m_includeContentHasBeenSet = false; }; } // namespace Model } // namespace ConnectCases } // namespace Aws