vite.api.vo.SnapshotBlockSubscriptions Maven / Gradle / Ivy
The newest version!
package vite.api.vo;
import java.util.List;
public class SnapshotBlockSubscriptions {
private List result;
private String subscription;
public List getResult() {
return result;
}
public void setResult(List result) {
this.result = result;
}
public void setSubscription(String subscription) {
this.subscription = subscription;
}
public String getSubscription() {
return subscription;
}
public static class SnapshotBlockSubscribion {
private String hash;
private long height;
private boolean removed;
public void setHash(String hash) {
this.hash = hash;
}
public String getHash() {
return hash;
}
public void setHeight(long height) {
this.height = height;
}
public long getHeight() {
return height;
}
public void setRemoved(boolean removed) {
this.removed = removed;
}
public boolean getRemoved() {
return removed;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy