/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/connectcases/ConnectCases_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace ConnectCases { namespace Model { /** * <p>Object for field related information.</p><p><h3>See Also:</h3> <a * href="http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/FieldItem">AWS * API Reference</a></p> */ class FieldItem { public: AWS_CONNECTCASES_API FieldItem(); AWS_CONNECTCASES_API FieldItem(Aws::Utils::Json::JsonView jsonValue); AWS_CONNECTCASES_API FieldItem& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_CONNECTCASES_API Aws::Utils::Json::JsonValue Jsonize() const; /** * <p>Unique identifier of a field.</p> */ inline const Aws::String& GetId() const{ return m_id; } /** * <p>Unique identifier of a field.</p> */ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** * <p>Unique identifier of a field.</p> */ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** * <p>Unique identifier of a field.</p> */ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** * <p>Unique identifier of a field.</p> */ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** * <p>Unique identifier of a field.</p> */ inline FieldItem& WithId(const Aws::String& value) { SetId(value); return *this;} /** * <p>Unique identifier of a field.</p> */ inline FieldItem& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** * <p>Unique identifier of a field.</p> */ inline FieldItem& WithId(const char* value) { SetId(value); return *this;} private: Aws::String m_id; bool m_idHasBeenSet = false; }; } // namespace Model } // namespace ConnectCases } // namespace Aws