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_ASSET_INFO_HPP
7 : #define IROHA_GET_ASSET_INFO_HPP
8 :
9 : #include <string>
10 : #include "model/query.hpp"
11 :
12 : namespace iroha {
13 : namespace model {
14 : /**
15 : * Get meta data of asset
16 : */
17 : struct GetAssetInfo : Query {
18 : GetAssetInfo() {}
19 :
20 : GetAssetInfo(std::string asset_id) : asset_id(asset_id) {}
21 :
22 : /**
23 : * Asset Id
24 : */
25 1 : std::string asset_id{};
26 : };
27 : } // namespace model
28 : } // namespace iroha
29 :
30 : #endif // IROHA_GET_ASSET_INFO_HPP
|