/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Indicates that the one-time password (OTP) used for verification is
* invalid.See Also:
AWS
* API Reference
The status of the verification error.
*/ inline const Aws::String& GetStatus() const{ return m_status; } /** *The status of the verification error.
*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *The status of the verification error.
*/ inline void SetStatus(const Aws::String& value) { m_statusHasBeenSet = true; m_status = value; } /** *The status of the verification error.
*/ inline void SetStatus(Aws::String&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *The status of the verification error.
*/ inline void SetStatus(const char* value) { m_statusHasBeenSet = true; m_status.assign(value); } /** *The status of the verification error.
*/ inline VerificationException& WithStatus(const Aws::String& value) { SetStatus(value); return *this;} /** *The status of the verification error.
*/ inline VerificationException& WithStatus(Aws::String&& value) { SetStatus(std::move(value)); return *this;} /** *The status of the verification error.
*/ inline VerificationException& WithStatus(const char* value) { SetStatus(value); return *this;} private: Aws::String m_message; bool m_messageHasBeenSet = false; Aws::String m_status; bool m_statusHasBeenSet = false; }; } // namespace Model } // namespace SNS } // namespace Aws