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_SIGNATURES_HPP
7 : #define IROHA_GET_SIGNATURES_HPP
8 :
9 : #include <string>
10 :
11 : #include "model/query.hpp"
12 :
13 : namespace iroha {
14 : namespace model {
15 :
16 : /**
17 : * Query for getting all signatories attached to account
18 : */
19 : struct GetSignatories : Query {
20 : /**
21 : * Account identifier
22 : */
23 6 : std::string account_id{};
24 : };
25 : } // namespace model
26 : } // namespace iroha
27 : #endif // IROHA_GET_SIGNATURES_HPP
|