Line data Source code
1 : /**
2 : * Copyright Soramitsu Co., Ltd. All Rights Reserved.
3 : * SPDX-License-Identifier: Apache-2.0
4 : */
5 :
6 : #ifndef IROHA_ACCOUNT_DETAIL_RESPONSE_HPP
7 : #define IROHA_ACCOUNT_DETAIL_RESPONSE_HPP
8 :
9 : #include <string>
10 : #include "model/query_response.hpp"
11 :
12 : namespace iroha {
13 : namespace model {
14 :
15 : struct AccountDetailResponse : public QueryResponse {
16 2 : std::string detail{};
17 : };
18 : } // namespace model
19 : } // namespace iroha
20 : #endif // IROHA_ACCOUNT_DETAIL_RESPONSE_HPP
|