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