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

io.nuls.base.api.provider.consensus.facade.WithdrawReq Maven / Gradle / Ivy

package io.nuls.base.api.provider.consensus.facade;

import io.nuls.base.api.provider.BaseReq;

/**
 * @Author: zhoulijun
 * @Time: 2019-03-11 11:57
 * @Description:
 * 退出共识
 */
public class WithdrawReq extends BaseReq {

    String address;

    String txHash;

    String password;

    public WithdrawReq(String address, String txHash, String password) {
        this.address = address;
        this.txHash = txHash;
        this.password = password;
    }

    public WithdrawReq(String address, String txHash) {
        this.address = address;
        this.txHash = txHash;
    }

    public String getAddress() {
        return address;
    }

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

    public String getTxHash() {
        return txHash;
    }

    public void setTxHash(String txHash) {
        this.txHash = txHash;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy