AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
EyeDirection.h
1
6#pragma once
7#include <aws/rekognition/Rekognition_EXPORTS.h>
8
9namespace Aws
10{
11namespace Utils
12{
13namespace Json
14{
15 class JsonValue;
16 class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace Rekognition
20{
21namespace Model
22{
23
31 {
32 public:
33 AWS_REKOGNITION_API EyeDirection();
34 AWS_REKOGNITION_API EyeDirection(Aws::Utils::Json::JsonView jsonValue);
35 AWS_REKOGNITION_API EyeDirection& operator=(Aws::Utils::Json::JsonView jsonValue);
36 AWS_REKOGNITION_API Aws::Utils::Json::JsonValue Jsonize() const;
37
38
40
43 inline double GetYaw() const{ return m_yaw; }
44 inline bool YawHasBeenSet() const { return m_yawHasBeenSet; }
45 inline void SetYaw(double value) { m_yawHasBeenSet = true; m_yaw = value; }
46 inline EyeDirection& WithYaw(double value) { SetYaw(value); return *this;}
48
50
53 inline double GetPitch() const{ return m_pitch; }
54 inline bool PitchHasBeenSet() const { return m_pitchHasBeenSet; }
55 inline void SetPitch(double value) { m_pitchHasBeenSet = true; m_pitch = value; }
56 inline EyeDirection& WithPitch(double value) { SetPitch(value); return *this;}
58
60
63 inline double GetConfidence() const{ return m_confidence; }
64 inline bool ConfidenceHasBeenSet() const { return m_confidenceHasBeenSet; }
65 inline void SetConfidence(double value) { m_confidenceHasBeenSet = true; m_confidence = value; }
66 inline EyeDirection& WithConfidence(double value) { SetConfidence(value); return *this;}
68 private:
69
70 double m_yaw;
71 bool m_yawHasBeenSet = false;
72
73 double m_pitch;
74 bool m_pitchHasBeenSet = false;
75
76 double m_confidence;
77 bool m_confidenceHasBeenSet = false;
78 };
79
80} // namespace Model
81} // namespace Rekognition
82} // namespace Aws
EyeDirection & WithYaw(double value)
EyeDirection & WithPitch(double value)
AWS_REKOGNITION_API EyeDirection & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_REKOGNITION_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_REKOGNITION_API EyeDirection(Aws::Utils::Json::JsonView jsonValue)
EyeDirection & WithConfidence(double value)
AWS_REKOGNITION_API EyeDirection()
Aws::Utils::Json::JsonValue JsonValue