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_HPP
7 : #define IROHA_GET_ACCOUNT_HPP
8 :
9 : #include <string>
10 : #include "model/query.hpp"
11 :
12 : namespace iroha {
13 : namespace model {
14 :
15 : /**
16 : * Query for getting account's metadata
17 : */
18 : struct GetAccount : Query {
19 : /**
20 : * Account identifier
21 : */
22 10 : std::string account_id{};
23 : };
24 : } // namespace model
25 : } // namespace iroha
26 : #endif // IROHA_GET_ACCOUNT_HPP
|