/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The message details.See Also:
AWS
* API Reference
The message title.
*/ inline const Aws::String& GetTitle() const{ return m_title; } /** *The message title.
*/ inline bool TitleHasBeenSet() const { return m_titleHasBeenSet; } /** *The message title.
*/ inline void SetTitle(const Aws::String& value) { m_titleHasBeenSet = true; m_title = value; } /** *The message title.
*/ inline void SetTitle(Aws::String&& value) { m_titleHasBeenSet = true; m_title = std::move(value); } /** *The message title.
*/ inline void SetTitle(const char* value) { m_titleHasBeenSet = true; m_title.assign(value); } /** *The message title.
*/ inline FileValidationMessage& WithTitle(const Aws::String& value) { SetTitle(value); return *this;} /** *The message title.
*/ inline FileValidationMessage& WithTitle(Aws::String&& value) { SetTitle(std::move(value)); return *this;} /** *The message title.
*/ inline FileValidationMessage& WithTitle(const char* value) { SetTitle(value); return *this;} /** *The message content.
*/ inline const Aws::String& GetContent() const{ return m_content; } /** *The message content.
*/ inline bool ContentHasBeenSet() const { return m_contentHasBeenSet; } /** *The message content.
*/ inline void SetContent(const Aws::String& value) { m_contentHasBeenSet = true; m_content = value; } /** *The message content.
*/ inline void SetContent(Aws::String&& value) { m_contentHasBeenSet = true; m_content = std::move(value); } /** *The message content.
*/ inline void SetContent(const char* value) { m_contentHasBeenSet = true; m_content.assign(value); } /** *The message content.
*/ inline FileValidationMessage& WithContent(const Aws::String& value) { SetContent(value); return *this;} /** *The message content.
*/ inline FileValidationMessage& WithContent(Aws::String&& value) { SetContent(std::move(value)); return *this;} /** *The message content.
*/ inline FileValidationMessage& WithContent(const char* value) { SetContent(value); return *this;} /** *The message type.
*/ inline const Aws::String& GetType() const{ return m_type; } /** *The message type.
*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *The message type.
*/ inline void SetType(const Aws::String& value) { m_typeHasBeenSet = true; m_type = value; } /** *The message type.
*/ inline void SetType(Aws::String&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *The message type.
*/ inline void SetType(const char* value) { m_typeHasBeenSet = true; m_type.assign(value); } /** *The message type.
*/ inline FileValidationMessage& WithType(const Aws::String& value) { SetType(value); return *this;} /** *The message type.
*/ inline FileValidationMessage& WithType(Aws::String&& value) { SetType(std::move(value)); return *this;} /** *The message type.
*/ inline FileValidationMessage& WithType(const char* value) { SetType(value); return *this;} private: Aws::String m_title; bool m_titleHasBeenSet = false; Aws::String m_content; bool m_contentHasBeenSet = false; Aws::String m_type; bool m_typeHasBeenSet = false; }; } // namespace Model } // namespace FraudDetector } // namespace Aws