/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A list of items that represent cases.See Also:
AWS
* API Reference
A unique identifier of the case.
*/ inline const Aws::String& GetCaseId() const{ return m_caseId; } /** *A unique identifier of the case.
*/ inline bool CaseIdHasBeenSet() const { return m_caseIdHasBeenSet; } /** *A unique identifier of the case.
*/ inline void SetCaseId(const Aws::String& value) { m_caseIdHasBeenSet = true; m_caseId = value; } /** *A unique identifier of the case.
*/ inline void SetCaseId(Aws::String&& value) { m_caseIdHasBeenSet = true; m_caseId = std::move(value); } /** *A unique identifier of the case.
*/ inline void SetCaseId(const char* value) { m_caseIdHasBeenSet = true; m_caseId.assign(value); } /** *A unique identifier of the case.
*/ inline SearchCasesResponseItem& WithCaseId(const Aws::String& value) { SetCaseId(value); return *this;} /** *A unique identifier of the case.
*/ inline SearchCasesResponseItem& WithCaseId(Aws::String&& value) { SetCaseId(std::move(value)); return *this;} /** *A unique identifier of the case.
*/ inline SearchCasesResponseItem& WithCaseId(const char* value) { SetCaseId(value); return *this;} /** *List of case field values.
*/ inline const Aws::VectorList of case field values.
*/ inline bool FieldsHasBeenSet() const { return m_fieldsHasBeenSet; } /** *List of case field values.
*/ inline void SetFields(const Aws::VectorList of case field values.
*/ inline void SetFields(Aws::VectorList of case field values.
*/ inline SearchCasesResponseItem& WithFields(const Aws::VectorList of case field values.
*/ inline SearchCasesResponseItem& WithFields(Aws::VectorList of case field values.
*/ inline SearchCasesResponseItem& AddFields(const FieldValue& value) { m_fieldsHasBeenSet = true; m_fields.push_back(value); return *this; } /** *List of case field values.
*/ inline SearchCasesResponseItem& AddFields(FieldValue&& value) { m_fieldsHasBeenSet = true; m_fields.push_back(std::move(value)); return *this; } /** *A map of of key-value pairs that represent tags on a resource. Tags are used * to organize, track, or control access for this resource.
*/ inline const Aws::MapA map of of key-value pairs that represent tags on a resource. Tags are used * to organize, track, or control access for this resource.
*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *A map of of key-value pairs that represent tags on a resource. Tags are used * to organize, track, or control access for this resource.
*/ inline void SetTags(const Aws::MapA map of of key-value pairs that represent tags on a resource. Tags are used * to organize, track, or control access for this resource.
*/ inline void SetTags(Aws::MapA map of of key-value pairs that represent tags on a resource. Tags are used * to organize, track, or control access for this resource.
*/ inline SearchCasesResponseItem& WithTags(const Aws::MapA map of of key-value pairs that represent tags on a resource. Tags are used * to organize, track, or control access for this resource.
*/ inline SearchCasesResponseItem& WithTags(Aws::MapA map of of key-value pairs that represent tags on a resource. Tags are used * to organize, track, or control access for this resource.
*/ inline SearchCasesResponseItem& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *A map of of key-value pairs that represent tags on a resource. Tags are used * to organize, track, or control access for this resource.
*/ inline SearchCasesResponseItem& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *A map of of key-value pairs that represent tags on a resource. Tags are used * to organize, track, or control access for this resource.
*/ inline SearchCasesResponseItem& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *A map of of key-value pairs that represent tags on a resource. Tags are used * to organize, track, or control access for this resource.
*/ inline SearchCasesResponseItem& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; } /** *A map of of key-value pairs that represent tags on a resource. Tags are used * to organize, track, or control access for this resource.
*/ inline SearchCasesResponseItem& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *A map of of key-value pairs that represent tags on a resource. Tags are used * to organize, track, or control access for this resource.
*/ inline SearchCasesResponseItem& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *A map of of key-value pairs that represent tags on a resource. Tags are used * to organize, track, or control access for this resource.
*/ inline SearchCasesResponseItem& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *A unique identifier of a template.
*/ inline const Aws::String& GetTemplateId() const{ return m_templateId; } /** *A unique identifier of a template.
*/ inline bool TemplateIdHasBeenSet() const { return m_templateIdHasBeenSet; } /** *A unique identifier of a template.
*/ inline void SetTemplateId(const Aws::String& value) { m_templateIdHasBeenSet = true; m_templateId = value; } /** *A unique identifier of a template.
*/ inline void SetTemplateId(Aws::String&& value) { m_templateIdHasBeenSet = true; m_templateId = std::move(value); } /** *A unique identifier of a template.
*/ inline void SetTemplateId(const char* value) { m_templateIdHasBeenSet = true; m_templateId.assign(value); } /** *A unique identifier of a template.
*/ inline SearchCasesResponseItem& WithTemplateId(const Aws::String& value) { SetTemplateId(value); return *this;} /** *A unique identifier of a template.
*/ inline SearchCasesResponseItem& WithTemplateId(Aws::String&& value) { SetTemplateId(std::move(value)); return *this;} /** *A unique identifier of a template.
*/ inline SearchCasesResponseItem& WithTemplateId(const char* value) { SetTemplateId(value); return *this;} private: Aws::String m_caseId; bool m_caseIdHasBeenSet = false; Aws::Vector