AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
EphemerisData.h
1
6#pragma once
7#include <aws/groundstation/GroundStation_EXPORTS.h>
8#include <aws/groundstation/model/OEMEphemeris.h>
9#include <aws/groundstation/model/TLEEphemeris.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace GroundStation
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_GROUNDSTATION_API EphemerisData() = default;
36 AWS_GROUNDSTATION_API EphemerisData(Aws::Utils::Json::JsonView jsonValue);
37 AWS_GROUNDSTATION_API EphemerisData& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
43 inline const OEMEphemeris& GetOem() const { return m_oem; }
44 inline bool OemHasBeenSet() const { return m_oemHasBeenSet; }
45 template<typename OemT = OEMEphemeris>
46 void SetOem(OemT&& value) { m_oemHasBeenSet = true; m_oem = std::forward<OemT>(value); }
47 template<typename OemT = OEMEphemeris>
48 EphemerisData& WithOem(OemT&& value) { SetOem(std::forward<OemT>(value)); return *this;}
50
52
53 inline const TLEEphemeris& GetTle() const { return m_tle; }
54 inline bool TleHasBeenSet() const { return m_tleHasBeenSet; }
55 template<typename TleT = TLEEphemeris>
56 void SetTle(TleT&& value) { m_tleHasBeenSet = true; m_tle = std::forward<TleT>(value); }
57 template<typename TleT = TLEEphemeris>
58 EphemerisData& WithTle(TleT&& value) { SetTle(std::forward<TleT>(value)); return *this;}
60 private:
61
62 OEMEphemeris m_oem;
63 bool m_oemHasBeenSet = false;
64
65 TLEEphemeris m_tle;
66 bool m_tleHasBeenSet = false;
67 };
68
69} // namespace Model
70} // namespace GroundStation
71} // namespace Aws
AWS_GROUNDSTATION_API EphemerisData()=default
const TLEEphemeris & GetTle() const
AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_GROUNDSTATION_API EphemerisData & operator=(Aws::Utils::Json::JsonView jsonValue)
const OEMEphemeris & GetOem() const
AWS_GROUNDSTATION_API EphemerisData(Aws::Utils::Json::JsonView jsonValue)
EphemerisData & WithOem(OemT &&value)
EphemerisData & WithTle(TleT &&value)
Aws::Utils::Json::JsonValue JsonValue