/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include List of fields that must have a value provided to create a
* case.See Also:
AWS
* API Reference
Unique identifier of a field.
*/ inline const Aws::String& GetFieldId() const{ return m_fieldId; } /** *Unique identifier of a field.
*/ inline bool FieldIdHasBeenSet() const { return m_fieldIdHasBeenSet; } /** *Unique identifier of a field.
*/ inline void SetFieldId(const Aws::String& value) { m_fieldIdHasBeenSet = true; m_fieldId = value; } /** *Unique identifier of a field.
*/ inline void SetFieldId(Aws::String&& value) { m_fieldIdHasBeenSet = true; m_fieldId = std::move(value); } /** *Unique identifier of a field.
*/ inline void SetFieldId(const char* value) { m_fieldIdHasBeenSet = true; m_fieldId.assign(value); } /** *Unique identifier of a field.
*/ inline RequiredField& WithFieldId(const Aws::String& value) { SetFieldId(value); return *this;} /** *Unique identifier of a field.
*/ inline RequiredField& WithFieldId(Aws::String&& value) { SetFieldId(std::move(value)); return *this;} /** *Unique identifier of a field.
*/ inline RequiredField& WithFieldId(const char* value) { SetFieldId(value); return *this;} private: Aws::String m_fieldId; bool m_fieldIdHasBeenSet = false; }; } // namespace Model } // namespace ConnectCases } // namespace Aws