![JAR search and dependency download from the Maven repository](/logo.png)
io.neow3j.protocol.notifications.Notification Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
neow3j: Java/Kotlin/Android Development Toolkit for the Neo Blockchain
package io.neow3j.protocol.notifications;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
/**
* Base class for notifications.
*
* @param type of data return by a particular subscription
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class Notification {
private String jsonrpc;
private String method;
private NotificationParams params;
public String getJsonrpc() {
return jsonrpc;
}
public String getMethod() {
return method;
}
public NotificationParams getParams() {
return params;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy