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 : #include "interfaces/queries/tx_pagination_meta.hpp"
9 :
10 : namespace shared_model {
11 : namespace interface {
12 :
13 : std::string GetAccountAssetTransactions::toString() const {
14 0 : return detail::PrettyStringBuilder()
15 0 : .init("GetAccountAssetTransactions")
16 0 : .append("account_id", accountId())
17 0 : .append("asset_id", assetId())
18 0 : .append("pagination_meta", paginationMeta().toString())
19 0 : .finalize();
20 0 : }
21 :
22 : bool GetAccountAssetTransactions::operator==(const ModelType &rhs) const {
23 0 : return accountId() == rhs.accountId() and assetId() == rhs.assetId();
24 : }
25 :
26 : } // namespace interface
27 : } // namespace shared_model
|