4 #ifndef DJINNI_GENERATED_ERC20TOKEN_HPP 5 #define DJINNI_GENERATED_ERC20TOKEN_HPP 12 namespace ledger {
namespace core {
namespace api {
27 std::string contractAddress_,
28 int32_t numberOfDecimal_)
29 : name(
std::move(name_))
30 , symbol(
std::move(symbol_))
31 , contractAddress(
std::move(contractAddress_))
32 , numberOfDecimal(
std::move(numberOfDecimal_))
36 this->name = cpy.
name;
46 this->name = cpy.
name;
53 template <
class Archive>
54 void load(Archive& archive) {
55 archive(name, symbol, contractAddress, numberOfDecimal);
58 template <
class Archive>
59 void save(Archive& archive)
const {
60 archive(name, symbol, contractAddress, numberOfDecimal);
65 #endif //DJINNI_GENERATED_ERC20TOKEN_HPP std::string symbol
Definition: ERC20Token.hpp:19
Definition: BitcoinLikeFeePolicy.hpp:29
int32_t numberOfDecimal
Definition: ERC20Token.hpp:23
Definition: Account.cpp:8
std::string name
Definition: ERC20Token.hpp:17
Definition: ERC20Token.hpp:15
std::string contractAddress
Definition: ERC20Token.hpp:21