AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UncertaintyRange.h
1
6#pragma once
7#include <aws/frauddetector/FraudDetector_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 FraudDetector
20{
21namespace Model
22{
23
32 {
33 public:
34 AWS_FRAUDDETECTOR_API UncertaintyRange();
35 AWS_FRAUDDETECTOR_API UncertaintyRange(Aws::Utils::Json::JsonView jsonValue);
36 AWS_FRAUDDETECTOR_API UncertaintyRange& operator=(Aws::Utils::Json::JsonView jsonValue);
37 AWS_FRAUDDETECTOR_API Aws::Utils::Json::JsonValue Jsonize() const;
38
39
41
44 inline double GetLowerBoundValue() const{ return m_lowerBoundValue; }
45 inline bool LowerBoundValueHasBeenSet() const { return m_lowerBoundValueHasBeenSet; }
46 inline void SetLowerBoundValue(double value) { m_lowerBoundValueHasBeenSet = true; m_lowerBoundValue = value; }
47 inline UncertaintyRange& WithLowerBoundValue(double value) { SetLowerBoundValue(value); return *this;}
49
51
54 inline double GetUpperBoundValue() const{ return m_upperBoundValue; }
55 inline bool UpperBoundValueHasBeenSet() const { return m_upperBoundValueHasBeenSet; }
56 inline void SetUpperBoundValue(double value) { m_upperBoundValueHasBeenSet = true; m_upperBoundValue = value; }
57 inline UncertaintyRange& WithUpperBoundValue(double value) { SetUpperBoundValue(value); return *this;}
59 private:
60
61 double m_lowerBoundValue;
62 bool m_lowerBoundValueHasBeenSet = false;
63
64 double m_upperBoundValue;
65 bool m_upperBoundValueHasBeenSet = false;
66 };
67
68} // namespace Model
69} // namespace FraudDetector
70} // namespace Aws
AWS_FRAUDDETECTOR_API UncertaintyRange & operator=(Aws::Utils::Json::JsonView jsonValue)
UncertaintyRange & WithUpperBoundValue(double value)
AWS_FRAUDDETECTOR_API UncertaintyRange(Aws::Utils::Json::JsonView jsonValue)
AWS_FRAUDDETECTOR_API Aws::Utils::Json::JsonValue Jsonize() const
UncertaintyRange & WithLowerBoundValue(double value)
Aws::Utils::Json::JsonValue JsonValue