AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
FulfillmentActivity.h
1
6#pragma once
7#include <aws/lex-models/LexModelBuildingService_EXPORTS.h>
8#include <aws/lex-models/model/FulfillmentActivityType.h>
9#include <aws/lex-models/model/CodeHook.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 LexModelBuildingService
23{
24namespace Model
25{
26
46 {
47 public:
48 AWS_LEXMODELBUILDINGSERVICE_API FulfillmentActivity();
49 AWS_LEXMODELBUILDINGSERVICE_API FulfillmentActivity(Aws::Utils::Json::JsonView jsonValue);
50 AWS_LEXMODELBUILDINGSERVICE_API FulfillmentActivity& operator=(Aws::Utils::Json::JsonView jsonValue);
51 AWS_LEXMODELBUILDINGSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
52
53
55
59 inline const FulfillmentActivityType& GetType() const{ return m_type; }
60 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
61 inline void SetType(const FulfillmentActivityType& value) { m_typeHasBeenSet = true; m_type = value; }
62 inline void SetType(FulfillmentActivityType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
63 inline FulfillmentActivity& WithType(const FulfillmentActivityType& value) { SetType(value); return *this;}
64 inline FulfillmentActivity& WithType(FulfillmentActivityType&& value) { SetType(std::move(value)); return *this;}
66
68
71 inline const CodeHook& GetCodeHook() const{ return m_codeHook; }
72 inline bool CodeHookHasBeenSet() const { return m_codeHookHasBeenSet; }
73 inline void SetCodeHook(const CodeHook& value) { m_codeHookHasBeenSet = true; m_codeHook = value; }
74 inline void SetCodeHook(CodeHook&& value) { m_codeHookHasBeenSet = true; m_codeHook = std::move(value); }
75 inline FulfillmentActivity& WithCodeHook(const CodeHook& value) { SetCodeHook(value); return *this;}
76 inline FulfillmentActivity& WithCodeHook(CodeHook&& value) { SetCodeHook(std::move(value)); return *this;}
78 private:
79
81 bool m_typeHasBeenSet = false;
82
83 CodeHook m_codeHook;
84 bool m_codeHookHasBeenSet = false;
85 };
86
87} // namespace Model
88} // namespace LexModelBuildingService
89} // namespace Aws
AWS_LEXMODELBUILDINGSERVICE_API FulfillmentActivity(Aws::Utils::Json::JsonView jsonValue)
void SetType(const FulfillmentActivityType &value)
AWS_LEXMODELBUILDINGSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
FulfillmentActivity & WithCodeHook(const CodeHook &value)
FulfillmentActivity & WithCodeHook(CodeHook &&value)
AWS_LEXMODELBUILDINGSERVICE_API FulfillmentActivity & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_LEXMODELBUILDINGSERVICE_API FulfillmentActivity()
FulfillmentActivity & WithType(const FulfillmentActivityType &value)
FulfillmentActivity & WithType(FulfillmentActivityType &&value)
Aws::Utils::Json::JsonValue JsonValue