All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cc.youchain.protocol.admin.methods.response.PersonalImportValKey Maven / Gradle / Ivy

There is a newer version: 1.1.5
Show newest version
package cc.youchain.protocol.admin.methods.response;

import cc.youchain.protocol.core.Response;

/**
 * personal_importValKey.
 */
public class PersonalImportValKey extends Response {

    public PersonalImportValKeyResp getResp() {
        return this.getResult();
    }

    public static class PersonalImportValKeyResp {

        private String address;

        private String mainPubKey;

        private String blsPubKey;

        public String getAddress() {
            return address;
        }

        public void setAddress(String address) {
            this.address = address;
        }

        public String getMainPubKey() {
            return mainPubKey;
        }

        public void setMainPubKey(String mainPubKey) {
            this.mainPubKey = mainPubKey;
        }

        public String getBlsPubKey() {
            return blsPubKey;
        }

        public void setBlsPubKey(String blsPubKey) {
            this.blsPubKey = blsPubKey;
        }

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy