4 #ifndef DJINNI_GENERATED_EXTENDEDKEYACCOUNTCREATIONINFO_HPP 5 #define DJINNI_GENERATED_EXTENDEDKEYACCOUNTCREATIONINFO_HPP 13 namespace ledger {
namespace core {
namespace api {
18 std::vector<std::string> owners;
19 std::vector<std::string> derivations;
20 std::vector<std::string> extendedKeys;
23 std::vector<std::string> owners_,
24 std::vector<std::string> derivations_,
25 std::vector<std::string> extendedKeys_)
26 : index(std::move(index_))
27 , owners(std::move(owners_))
28 , derivations(std::move(derivations_))
29 , extendedKeys(std::move(extendedKeys_))
33 this->index = cpy.index;
34 this->owners = cpy.owners;
35 this->derivations = cpy.derivations;
36 this->extendedKeys = cpy.extendedKeys;
43 this->index = cpy.index;
44 this->owners = cpy.owners;
45 this->derivations = cpy.derivations;
46 this->extendedKeys = cpy.extendedKeys;
50 template <
class Archive>
51 void load(Archive& archive) {
52 archive(index, owners, derivations, extendedKeys);
55 template <
class Archive>
56 void save(Archive& archive)
const {
57 archive(index, owners, derivations, extendedKeys);
62 #endif //DJINNI_GENERATED_EXTENDEDKEYACCOUNTCREATIONINFO_HPP Definition: ExtendedKeyAccountCreationInfo.hpp:16
Definition: Account.cpp:8