AWS SDK for C++

AWS SDK for C++ Version 1.11.759

Loading...
Searching...
No Matches
Range.h
1
6#pragma once
7#include <aws/connect/Connect_EXPORTS.h>
8
9namespace Aws {
10namespace Utils {
11namespace Json {
12class JsonValue;
13class JsonView;
14} // namespace Json
15} // namespace Utils
16namespace Connect {
17namespace Model {
18
25class Range {
26 public:
27 AWS_CONNECT_API Range() = default;
28 AWS_CONNECT_API Range(Aws::Utils::Json::JsonView jsonValue);
29 AWS_CONNECT_API Range& operator=(Aws::Utils::Json::JsonView jsonValue);
30 AWS_CONNECT_API Aws::Utils::Json::JsonValue Jsonize() const;
31
33
36 inline double GetMinProficiencyLevel() const { return m_minProficiencyLevel; }
37 inline bool MinProficiencyLevelHasBeenSet() const { return m_minProficiencyLevelHasBeenSet; }
38 inline void SetMinProficiencyLevel(double value) {
39 m_minProficiencyLevelHasBeenSet = true;
40 m_minProficiencyLevel = value;
41 }
42 inline Range& WithMinProficiencyLevel(double value) {
44 return *this;
45 }
47
49
52 inline double GetMaxProficiencyLevel() const { return m_maxProficiencyLevel; }
53 inline bool MaxProficiencyLevelHasBeenSet() const { return m_maxProficiencyLevelHasBeenSet; }
54 inline void SetMaxProficiencyLevel(double value) {
55 m_maxProficiencyLevelHasBeenSet = true;
56 m_maxProficiencyLevel = value;
57 }
58 inline Range& WithMaxProficiencyLevel(double value) {
60 return *this;
61 }
63 private:
64 double m_minProficiencyLevel{0.0};
65
66 double m_maxProficiencyLevel{0.0};
67 bool m_minProficiencyLevelHasBeenSet = false;
68 bool m_maxProficiencyLevelHasBeenSet = false;
69};
70
71} // namespace Model
72} // namespace Connect
73} // namespace Aws
AWS_CONNECT_API Range()=default
AWS_CONNECT_API Range & operator=(Aws::Utils::Json::JsonView jsonValue)
double GetMaxProficiencyLevel() const
Definition Range.h:52
Range & WithMaxProficiencyLevel(double value)
Definition Range.h:58
double GetMinProficiencyLevel() const
Definition Range.h:36
Range & WithMinProficiencyLevel(double value)
Definition Range.h:42
AWS_CONNECT_API Aws::Utils::Json::JsonValue Jsonize() const
void SetMinProficiencyLevel(double value)
Definition Range.h:38
bool MaxProficiencyLevelHasBeenSet() const
Definition Range.h:53
void SetMaxProficiencyLevel(double value)
Definition Range.h:54
bool MinProficiencyLevelHasBeenSet() const
Definition Range.h:37
AWS_CONNECT_API Range(Aws::Utils::Json::JsonView jsonValue)
Aws::Utils::Json::JsonValue JsonValue