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_GET_ACCOUNT_DETAIL_HPP
7 : #define IROHA_GET_ACCOUNT_DETAIL_HPP
8 :
9 : #include <string>
10 : #include "model/query.hpp"
11 :
12 : namespace iroha {
13 : namespace model {
14 : /**
15 : * Query for get all account's detail
16 : */
17 : struct GetAccountDetail : Query {
18 3 : std::string account_id{};
19 : };
20 : } // namespace model
21 : } // namespace iroha
22 : #endif // IROHA_GET_ACCOUNT_DETAIL_HPP
|