AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CellSignals.h
1
6#pragma once
7#include <aws/location/LocationService_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/location/model/LteCellDetails.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 LocationService
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_LOCATIONSERVICE_API CellSignals();
37 AWS_LOCATIONSERVICE_API CellSignals(Aws::Utils::Json::JsonView jsonValue);
38 AWS_LOCATIONSERVICE_API CellSignals& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_LOCATIONSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const Aws::Vector<LteCellDetails>& GetLteCellDetails() const{ return m_lteCellDetails; }
48 inline bool LteCellDetailsHasBeenSet() const { return m_lteCellDetailsHasBeenSet; }
49 inline void SetLteCellDetails(const Aws::Vector<LteCellDetails>& value) { m_lteCellDetailsHasBeenSet = true; m_lteCellDetails = value; }
50 inline void SetLteCellDetails(Aws::Vector<LteCellDetails>&& value) { m_lteCellDetailsHasBeenSet = true; m_lteCellDetails = std::move(value); }
51 inline CellSignals& WithLteCellDetails(const Aws::Vector<LteCellDetails>& value) { SetLteCellDetails(value); return *this;}
52 inline CellSignals& WithLteCellDetails(Aws::Vector<LteCellDetails>&& value) { SetLteCellDetails(std::move(value)); return *this;}
53 inline CellSignals& AddLteCellDetails(const LteCellDetails& value) { m_lteCellDetailsHasBeenSet = true; m_lteCellDetails.push_back(value); return *this; }
54 inline CellSignals& AddLteCellDetails(LteCellDetails&& value) { m_lteCellDetailsHasBeenSet = true; m_lteCellDetails.push_back(std::move(value)); return *this; }
56 private:
57
58 Aws::Vector<LteCellDetails> m_lteCellDetails;
59 bool m_lteCellDetailsHasBeenSet = false;
60 };
61
62} // namespace Model
63} // namespace LocationService
64} // namespace Aws
CellSignals & WithLteCellDetails(const Aws::Vector< LteCellDetails > &value)
Definition CellSignals.h:51
const Aws::Vector< LteCellDetails > & GetLteCellDetails() const
Definition CellSignals.h:47
AWS_LOCATIONSERVICE_API CellSignals & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetLteCellDetails(const Aws::Vector< LteCellDetails > &value)
Definition CellSignals.h:49
CellSignals & WithLteCellDetails(Aws::Vector< LteCellDetails > &&value)
Definition CellSignals.h:52
AWS_LOCATIONSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
CellSignals & AddLteCellDetails(const LteCellDetails &value)
Definition CellSignals.h:53
AWS_LOCATIONSERVICE_API CellSignals(Aws::Utils::Json::JsonView jsonValue)
CellSignals & AddLteCellDetails(LteCellDetails &&value)
Definition CellSignals.h:54
void SetLteCellDetails(Aws::Vector< LteCellDetails > &&value)
Definition CellSignals.h:50
AWS_LOCATIONSERVICE_API CellSignals()
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue