AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
RouteTollPaymentSite.h
1
6#pragma once
7#include <aws/geo-routes/GeoRoutes_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.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 GeoRoutes
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_GEOROUTES_API RouteTollPaymentSite();
39 AWS_GEOROUTES_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetName() const{ return m_name; }
47 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
48 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
49 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
50 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
51 inline RouteTollPaymentSite& WithName(const Aws::String& value) { SetName(value); return *this;}
52 inline RouteTollPaymentSite& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
53 inline RouteTollPaymentSite& WithName(const char* value) { SetName(value); return *this;}
55
57
60 inline const Aws::Vector<double>& GetPosition() const{ return m_position; }
61 inline bool PositionHasBeenSet() const { return m_positionHasBeenSet; }
62 inline void SetPosition(const Aws::Vector<double>& value) { m_positionHasBeenSet = true; m_position = value; }
63 inline void SetPosition(Aws::Vector<double>&& value) { m_positionHasBeenSet = true; m_position = std::move(value); }
64 inline RouteTollPaymentSite& WithPosition(const Aws::Vector<double>& value) { SetPosition(value); return *this;}
65 inline RouteTollPaymentSite& WithPosition(Aws::Vector<double>&& value) { SetPosition(std::move(value)); return *this;}
66 inline RouteTollPaymentSite& AddPosition(double value) { m_positionHasBeenSet = true; m_position.push_back(value); return *this; }
68 private:
69
70 Aws::String m_name;
71 bool m_nameHasBeenSet = false;
72
73 Aws::Vector<double> m_position;
74 bool m_positionHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace GeoRoutes
79} // namespace Aws
RouteTollPaymentSite & WithName(Aws::String &&value)
RouteTollPaymentSite & WithName(const Aws::String &value)
AWS_GEOROUTES_API RouteTollPaymentSite & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetPosition(Aws::Vector< double > &&value)
RouteTollPaymentSite & WithName(const char *value)
void SetPosition(const Aws::Vector< double > &value)
AWS_GEOROUTES_API Aws::Utils::Json::JsonValue Jsonize() const
RouteTollPaymentSite & WithPosition(const Aws::Vector< double > &value)
RouteTollPaymentSite & WithPosition(Aws::Vector< double > &&value)
RouteTollPaymentSite & AddPosition(double value)
AWS_GEOROUTES_API RouteTollPaymentSite(Aws::Utils::Json::JsonView jsonValue)
const Aws::Vector< double > & GetPosition() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue