Line data Source code
1 : /**
2 : * Copyright Soramitsu Co., Ltd. All Rights Reserved.
3 : * SPDX-License-Identifier: Apache-2.0
4 : */
5 :
6 : #include "interfaces/queries/get_account_asset_transactions.hpp"
7 :
8 : namespace shared_model {
9 : namespace interface {
10 :
11 : std::string GetAccountAssetTransactions::toString() const {
12 14 : return detail::PrettyStringBuilder()
13 14 : .init("GetAccountAssetTransactions")
14 14 : .append("account_id", accountId())
15 14 : .append("asset_id", assetId())
16 14 : .finalize();
17 0 : }
18 :
19 : bool GetAccountAssetTransactions::operator==(const ModelType &rhs) const {
20 0 : return accountId() == rhs.accountId() and assetId() == rhs.assetId();
21 : }
22 :
23 : } // namespace interface
24 : } // namespace shared_model
|