com.radiance.tonclient.SubscribeCollectionEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ton-client-binding Show documentation
Show all versions of ton-client-binding Show documentation
everscale-client-java for freeton chain
The newest version!
package com.radiance.tonclient;
import com.fasterxml.jackson.databind.JsonNode;
public class SubscribeCollectionEvent {
private JsonNode result;
public void setResult(JsonNode value) {
result = value;
}
public JsonNode getResult() {
return result;
}
@Override
public String toString() {
return this.getClass().getSimpleName() + " " + result;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy