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

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

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

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

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

	private String key;

	private Long weight;

	public Key() {

	}

	public String getKey() {
		return key;
	}

	public void setKey(String key) {
		this.key = key;
	}

	public Long getWeight() {
		return weight;
	}

	public void setWeight(Long weight) {
		this.weight = weight;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy