/** * 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 ConnectCases { namespace Model { /** *

Object for unique identifier of a field.

See Also:

AWS * API Reference

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

Unique identifier of a field.

*/ inline const Aws::String& GetId() const{ return m_id; } /** *

Unique identifier of a field.

*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *

Unique identifier of a field.

*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *

Unique identifier of a field.

*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *

Unique identifier of a field.

*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *

Unique identifier of a field.

*/ inline FieldIdentifier& WithId(const Aws::String& value) { SetId(value); return *this;} /** *

Unique identifier of a field.

*/ inline FieldIdentifier& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *

Unique identifier of a field.

*/ inline FieldIdentifier& WithId(const char* value) { SetId(value); return *this;} private: Aws::String m_id; bool m_idHasBeenSet = false; }; } // namespace Model } // namespace ConnectCases } // namespace Aws