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

io.eosif.lib.rpc.vo.account.RequiredAuth Maven / Gradle / Ivy

package io.eosif.lib.rpc.vo.account;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

import java.util.List;

/**
 * 
 * @author espritblock http://eblock.io
 *
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class RequiredAuth {

	private List accounts;

	private List keys;

	private Long threshold;

	public List getAccounts() {
		return accounts;
	}

	public void setAccounts(List accounts) {
		this.accounts = accounts;
	}

	public List getKeys() {
		return keys;
	}

	public void setKeys(List keys) {
		this.keys = keys;
	}

	public Long getThreshold() {
		return threshold;
	}

	public void setThreshold(Long threshold) {
		this.threshold = threshold;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy