AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
BatchGetFieldRequest.h
1
6#pragma once
7#include <aws/connectcases/ConnectCases_EXPORTS.h>
8#include <aws/connectcases/ConnectCasesRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/connectcases/model/FieldIdentifier.h>
12#include <utility>
13
14namespace Aws
15{
16namespace ConnectCases
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_CONNECTCASES_API BatchGetFieldRequest();
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "BatchGetField"; }
33
34 AWS_CONNECTCASES_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::String& GetDomainId() const{ return m_domainId; }
42 inline bool DomainIdHasBeenSet() const { return m_domainIdHasBeenSet; }
43 inline void SetDomainId(const Aws::String& value) { m_domainIdHasBeenSet = true; m_domainId = value; }
44 inline void SetDomainId(Aws::String&& value) { m_domainIdHasBeenSet = true; m_domainId = std::move(value); }
45 inline void SetDomainId(const char* value) { m_domainIdHasBeenSet = true; m_domainId.assign(value); }
46 inline BatchGetFieldRequest& WithDomainId(const Aws::String& value) { SetDomainId(value); return *this;}
47 inline BatchGetFieldRequest& WithDomainId(Aws::String&& value) { SetDomainId(std::move(value)); return *this;}
48 inline BatchGetFieldRequest& WithDomainId(const char* value) { SetDomainId(value); return *this;}
50
52
55 inline const Aws::Vector<FieldIdentifier>& GetFields() const{ return m_fields; }
56 inline bool FieldsHasBeenSet() const { return m_fieldsHasBeenSet; }
57 inline void SetFields(const Aws::Vector<FieldIdentifier>& value) { m_fieldsHasBeenSet = true; m_fields = value; }
58 inline void SetFields(Aws::Vector<FieldIdentifier>&& value) { m_fieldsHasBeenSet = true; m_fields = std::move(value); }
59 inline BatchGetFieldRequest& WithFields(const Aws::Vector<FieldIdentifier>& value) { SetFields(value); return *this;}
60 inline BatchGetFieldRequest& WithFields(Aws::Vector<FieldIdentifier>&& value) { SetFields(std::move(value)); return *this;}
61 inline BatchGetFieldRequest& AddFields(const FieldIdentifier& value) { m_fieldsHasBeenSet = true; m_fields.push_back(value); return *this; }
62 inline BatchGetFieldRequest& AddFields(FieldIdentifier&& value) { m_fieldsHasBeenSet = true; m_fields.push_back(std::move(value)); return *this; }
64 private:
65
66 Aws::String m_domainId;
67 bool m_domainIdHasBeenSet = false;
68
70 bool m_fieldsHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace ConnectCases
75} // namespace Aws
virtual const char * GetServiceRequestName() const override
BatchGetFieldRequest & WithFields(const Aws::Vector< FieldIdentifier > &value)
BatchGetFieldRequest & WithDomainId(const char *value)
BatchGetFieldRequest & WithDomainId(const Aws::String &value)
const Aws::Vector< FieldIdentifier > & GetFields() const
void SetFields(Aws::Vector< FieldIdentifier > &&value)
BatchGetFieldRequest & WithDomainId(Aws::String &&value)
BatchGetFieldRequest & AddFields(FieldIdentifier &&value)
BatchGetFieldRequest & WithFields(Aws::Vector< FieldIdentifier > &&value)
BatchGetFieldRequest & AddFields(const FieldIdentifier &value)
void SetFields(const Aws::Vector< FieldIdentifier > &value)
AWS_CONNECTCASES_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector