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