/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Indicates whether or not the eyes on the face are open, and the confidence
* level in the determination.See Also:
AWS
* API Reference
Boolean value that indicates whether the eyes on the face are open.
*/ inline bool GetValue() const{ return m_value; } /** *Boolean value that indicates whether the eyes on the face are open.
*/ inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } /** *Boolean value that indicates whether the eyes on the face are open.
*/ inline void SetValue(bool value) { m_valueHasBeenSet = true; m_value = value; } /** *Boolean value that indicates whether the eyes on the face are open.
*/ inline EyeOpen& WithValue(bool value) { SetValue(value); return *this;} /** *Level of confidence in the determination.
*/ inline double GetConfidence() const{ return m_confidence; } /** *Level of confidence in the determination.
*/ inline bool ConfidenceHasBeenSet() const { return m_confidenceHasBeenSet; } /** *Level of confidence in the determination.
*/ inline void SetConfidence(double value) { m_confidenceHasBeenSet = true; m_confidence = value; } /** *Level of confidence in the determination.
*/ inline EyeOpen& WithConfidence(double value) { SetConfidence(value); return *this;} private: bool m_value; bool m_valueHasBeenSet = false; double m_confidence; bool m_confidenceHasBeenSet = false; }; } // namespace Model } // namespace Rekognition } // namespace Aws