AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
Eirp.h
1
6#pragma once
7#include <aws/groundstation/GroundStation_EXPORTS.h>
8#include <aws/groundstation/model/EirpUnits.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace GroundStation
22{
23namespace Model
24{
25
31 class Eirp
32 {
33 public:
34 AWS_GROUNDSTATION_API Eirp();
35 AWS_GROUNDSTATION_API Eirp(Aws::Utils::Json::JsonView jsonValue);
36 AWS_GROUNDSTATION_API Eirp& operator=(Aws::Utils::Json::JsonView jsonValue);
37 AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const;
38
39
41
44 inline const EirpUnits& GetUnits() const{ return m_units; }
45 inline bool UnitsHasBeenSet() const { return m_unitsHasBeenSet; }
46 inline void SetUnits(const EirpUnits& value) { m_unitsHasBeenSet = true; m_units = value; }
47 inline void SetUnits(EirpUnits&& value) { m_unitsHasBeenSet = true; m_units = std::move(value); }
48 inline Eirp& WithUnits(const EirpUnits& value) { SetUnits(value); return *this;}
49 inline Eirp& WithUnits(EirpUnits&& value) { SetUnits(std::move(value)); return *this;}
51
53
56 inline double GetValue() const{ return m_value; }
57 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
58 inline void SetValue(double value) { m_valueHasBeenSet = true; m_value = value; }
59 inline Eirp& WithValue(double value) { SetValue(value); return *this;}
61 private:
62
63 EirpUnits m_units;
64 bool m_unitsHasBeenSet = false;
65
66 double m_value;
67 bool m_valueHasBeenSet = false;
68 };
69
70} // namespace Model
71} // namespace GroundStation
72} // namespace Aws
bool ValueHasBeenSet() const
Definition Eirp.h:57
bool UnitsHasBeenSet() const
Definition Eirp.h:45
AWS_GROUNDSTATION_API Eirp & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetValue(double value)
Definition Eirp.h:58
Eirp & WithUnits(EirpUnits &&value)
Definition Eirp.h:49
const EirpUnits & GetUnits() const
Definition Eirp.h:44
void SetUnits(const EirpUnits &value)
Definition Eirp.h:46
Eirp & WithUnits(const EirpUnits &value)
Definition Eirp.h:48
double GetValue() const
Definition Eirp.h:56
Eirp & WithValue(double value)
Definition Eirp.h:59
AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_GROUNDSTATION_API Eirp(Aws::Utils::Json::JsonView jsonValue)
AWS_GROUNDSTATION_API Eirp()
void SetUnits(EirpUnits &&value)
Definition Eirp.h:47
Aws::Utils::Json::JsonValue JsonValue