/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The container for the properties of a token balance output.See
* Also:
AWS
* API Reference
The container for the token balance.
*/ inline const Aws::String& GetBalance() const{ return m_balance; } /** *The container for the token balance.
*/ inline bool BalanceHasBeenSet() const { return m_balanceHasBeenSet; } /** *The container for the token balance.
*/ inline void SetBalance(const Aws::String& value) { m_balanceHasBeenSet = true; m_balance = value; } /** *The container for the token balance.
*/ inline void SetBalance(Aws::String&& value) { m_balanceHasBeenSet = true; m_balance = std::move(value); } /** *The container for the token balance.
*/ inline void SetBalance(const char* value) { m_balanceHasBeenSet = true; m_balance.assign(value); } /** *The container for the token balance.
*/ inline BatchGetTokenBalanceOutputItem& WithBalance(const Aws::String& value) { SetBalance(value); return *this;} /** *The container for the token balance.
*/ inline BatchGetTokenBalanceOutputItem& WithBalance(Aws::String&& value) { SetBalance(std::move(value)); return *this;} /** *The container for the token balance.
*/ inline BatchGetTokenBalanceOutputItem& WithBalance(const char* value) { SetBalance(value); return *this;} inline const BlockchainInstant& GetAtBlockchainInstant() const{ return m_atBlockchainInstant; } inline bool AtBlockchainInstantHasBeenSet() const { return m_atBlockchainInstantHasBeenSet; } inline void SetAtBlockchainInstant(const BlockchainInstant& value) { m_atBlockchainInstantHasBeenSet = true; m_atBlockchainInstant = value; } inline void SetAtBlockchainInstant(BlockchainInstant&& value) { m_atBlockchainInstantHasBeenSet = true; m_atBlockchainInstant = std::move(value); } inline BatchGetTokenBalanceOutputItem& WithAtBlockchainInstant(const BlockchainInstant& value) { SetAtBlockchainInstant(value); return *this;} inline BatchGetTokenBalanceOutputItem& WithAtBlockchainInstant(BlockchainInstant&& value) { SetAtBlockchainInstant(std::move(value)); return *this;} inline const BlockchainInstant& GetLastUpdatedTime() const{ return m_lastUpdatedTime; } inline bool LastUpdatedTimeHasBeenSet() const { return m_lastUpdatedTimeHasBeenSet; } inline void SetLastUpdatedTime(const BlockchainInstant& value) { m_lastUpdatedTimeHasBeenSet = true; m_lastUpdatedTime = value; } inline void SetLastUpdatedTime(BlockchainInstant&& value) { m_lastUpdatedTimeHasBeenSet = true; m_lastUpdatedTime = std::move(value); } inline BatchGetTokenBalanceOutputItem& WithLastUpdatedTime(const BlockchainInstant& value) { SetLastUpdatedTime(value); return *this;} inline BatchGetTokenBalanceOutputItem& WithLastUpdatedTime(BlockchainInstant&& value) { SetLastUpdatedTime(std::move(value)); return *this;} private: OwnerIdentifier m_ownerIdentifier; bool m_ownerIdentifierHasBeenSet = false; TokenIdentifier m_tokenIdentifier; bool m_tokenIdentifierHasBeenSet = false; Aws::String m_balance; bool m_balanceHasBeenSet = false; BlockchainInstant m_atBlockchainInstant; bool m_atBlockchainInstantHasBeenSet = false; BlockchainInstant m_lastUpdatedTime; bool m_lastUpdatedTimeHasBeenSet = false; }; } // namespace Model } // namespace ManagedBlockchainQuery } // namespace Aws