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/query_responses/account_asset_response.hpp"
7 : #include "utils/string_builder.hpp"
8 :
9 : namespace shared_model {
10 : namespace interface {
11 :
12 : std::string AccountAssetResponse::toString() const {
13 : auto response =
14 0 : detail::PrettyStringBuilder().init("AccountAssetResponse");
15 0 : for (const auto &asset : accountAssets())
16 0 : response.append(asset.toString());
17 0 : return response.finalize();
18 0 : }
19 :
20 : bool AccountAssetResponse::operator==(const ModelType &rhs) const {
21 0 : return accountAssets() == rhs.accountAssets();
22 0 : }
23 :
24 : } // namespace interface
25 : } // namespace shared_model
|