AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
BatchGetTokenBalanceOutputItem.h
1
6#pragma once
7#include <aws/managedblockchain-query/ManagedBlockchainQuery_EXPORTS.h>
8#include <aws/managedblockchain-query/model/OwnerIdentifier.h>
9#include <aws/managedblockchain-query/model/TokenIdentifier.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/managedblockchain-query/model/BlockchainInstant.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Utils
17{
18namespace Json
19{
20 class JsonValue;
21 class JsonView;
22} // namespace Json
23} // namespace Utils
24namespace ManagedBlockchainQuery
25{
26namespace Model
27{
28
36 {
37 public:
38 AWS_MANAGEDBLOCKCHAINQUERY_API BatchGetTokenBalanceOutputItem();
39 AWS_MANAGEDBLOCKCHAINQUERY_API BatchGetTokenBalanceOutputItem(Aws::Utils::Json::JsonView jsonValue);
40 AWS_MANAGEDBLOCKCHAINQUERY_API BatchGetTokenBalanceOutputItem& operator=(Aws::Utils::Json::JsonView jsonValue);
41 AWS_MANAGEDBLOCKCHAINQUERY_API Aws::Utils::Json::JsonValue Jsonize() const;
42
43
45
46 inline const OwnerIdentifier& GetOwnerIdentifier() const{ return m_ownerIdentifier; }
47 inline bool OwnerIdentifierHasBeenSet() const { return m_ownerIdentifierHasBeenSet; }
48 inline void SetOwnerIdentifier(const OwnerIdentifier& value) { m_ownerIdentifierHasBeenSet = true; m_ownerIdentifier = value; }
49 inline void SetOwnerIdentifier(OwnerIdentifier&& value) { m_ownerIdentifierHasBeenSet = true; m_ownerIdentifier = std::move(value); }
51 inline BatchGetTokenBalanceOutputItem& WithOwnerIdentifier(OwnerIdentifier&& value) { SetOwnerIdentifier(std::move(value)); return *this;}
53
55
56 inline const TokenIdentifier& GetTokenIdentifier() const{ return m_tokenIdentifier; }
57 inline bool TokenIdentifierHasBeenSet() const { return m_tokenIdentifierHasBeenSet; }
58 inline void SetTokenIdentifier(const TokenIdentifier& value) { m_tokenIdentifierHasBeenSet = true; m_tokenIdentifier = value; }
59 inline void SetTokenIdentifier(TokenIdentifier&& value) { m_tokenIdentifierHasBeenSet = true; m_tokenIdentifier = std::move(value); }
61 inline BatchGetTokenBalanceOutputItem& WithTokenIdentifier(TokenIdentifier&& value) { SetTokenIdentifier(std::move(value)); return *this;}
63
65
68 inline const Aws::String& GetBalance() const{ return m_balance; }
69 inline bool BalanceHasBeenSet() const { return m_balanceHasBeenSet; }
70 inline void SetBalance(const Aws::String& value) { m_balanceHasBeenSet = true; m_balance = value; }
71 inline void SetBalance(Aws::String&& value) { m_balanceHasBeenSet = true; m_balance = std::move(value); }
72 inline void SetBalance(const char* value) { m_balanceHasBeenSet = true; m_balance.assign(value); }
73 inline BatchGetTokenBalanceOutputItem& WithBalance(const Aws::String& value) { SetBalance(value); return *this;}
74 inline BatchGetTokenBalanceOutputItem& WithBalance(Aws::String&& value) { SetBalance(std::move(value)); return *this;}
75 inline BatchGetTokenBalanceOutputItem& WithBalance(const char* value) { SetBalance(value); return *this;}
77
79
80 inline const BlockchainInstant& GetAtBlockchainInstant() const{ return m_atBlockchainInstant; }
81 inline bool AtBlockchainInstantHasBeenSet() const { return m_atBlockchainInstantHasBeenSet; }
82 inline void SetAtBlockchainInstant(const BlockchainInstant& value) { m_atBlockchainInstantHasBeenSet = true; m_atBlockchainInstant = value; }
83 inline void SetAtBlockchainInstant(BlockchainInstant&& value) { m_atBlockchainInstantHasBeenSet = true; m_atBlockchainInstant = std::move(value); }
87
89
90 inline const BlockchainInstant& GetLastUpdatedTime() const{ return m_lastUpdatedTime; }
91 inline bool LastUpdatedTimeHasBeenSet() const { return m_lastUpdatedTimeHasBeenSet; }
92 inline void SetLastUpdatedTime(const BlockchainInstant& value) { m_lastUpdatedTimeHasBeenSet = true; m_lastUpdatedTime = value; }
93 inline void SetLastUpdatedTime(BlockchainInstant&& value) { m_lastUpdatedTimeHasBeenSet = true; m_lastUpdatedTime = std::move(value); }
97 private:
98
99 OwnerIdentifier m_ownerIdentifier;
100 bool m_ownerIdentifierHasBeenSet = false;
101
102 TokenIdentifier m_tokenIdentifier;
103 bool m_tokenIdentifierHasBeenSet = false;
104
105 Aws::String m_balance;
106 bool m_balanceHasBeenSet = false;
107
108 BlockchainInstant m_atBlockchainInstant;
109 bool m_atBlockchainInstantHasBeenSet = false;
110
111 BlockchainInstant m_lastUpdatedTime;
112 bool m_lastUpdatedTimeHasBeenSet = false;
113 };
114
115} // namespace Model
116} // namespace ManagedBlockchainQuery
117} // namespace Aws
BatchGetTokenBalanceOutputItem & WithLastUpdatedTime(BlockchainInstant &&value)
AWS_MANAGEDBLOCKCHAINQUERY_API BatchGetTokenBalanceOutputItem(Aws::Utils::Json::JsonView jsonValue)
BatchGetTokenBalanceOutputItem & WithBalance(const Aws::String &value)
BatchGetTokenBalanceOutputItem & WithAtBlockchainInstant(BlockchainInstant &&value)
BatchGetTokenBalanceOutputItem & WithLastUpdatedTime(const BlockchainInstant &value)
AWS_MANAGEDBLOCKCHAINQUERY_API Aws::Utils::Json::JsonValue Jsonize() const
BatchGetTokenBalanceOutputItem & WithTokenIdentifier(TokenIdentifier &&value)
BatchGetTokenBalanceOutputItem & WithBalance(Aws::String &&value)
BatchGetTokenBalanceOutputItem & WithTokenIdentifier(const TokenIdentifier &value)
AWS_MANAGEDBLOCKCHAINQUERY_API BatchGetTokenBalanceOutputItem & operator=(Aws::Utils::Json::JsonView jsonValue)
BatchGetTokenBalanceOutputItem & WithAtBlockchainInstant(const BlockchainInstant &value)
BatchGetTokenBalanceOutputItem & WithOwnerIdentifier(OwnerIdentifier &&value)
BatchGetTokenBalanceOutputItem & WithOwnerIdentifier(const OwnerIdentifier &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue