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_ADDACCOUNTDETAIL_HPP
7 : #define IROHA_ADDACCOUNTDETAIL_HPP
8 :
9 : #include <string>
10 : #include "model/command.hpp"
11 :
12 : namespace iroha {
13 : namespace model {
14 :
15 : struct SetAccountDetail : public Command {
16 : std::string account_id;
17 : std::string key;
18 : std::string value;
19 :
20 : bool operator==(const Command &command) const override;
21 :
22 : SetAccountDetail() {}
23 :
24 : SetAccountDetail(const std::string &account_id,
25 : const std::string &key,
26 : const std::string &value)
27 1 : : account_id(account_id), key(key), value(value) {}
28 : };
29 :
30 : } // namespace model
31 : } // namespace iroha
32 :
33 : #endif // IROHA_ADDACCOUNTDETAIL_HPP
|