io.api.etherscan.model.utility.BaseResponseTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-etherscan-api Show documentation
Show all versions of java-etherscan-api Show documentation
Library is a wrapper for EtherScan API.
package io.api.etherscan.model.utility;
import io.api.etherscan.util.BasicUtils;
/**
* ! NO DESCRIPTION !
*
* @author GoodforGod
* @since 29.10.2018
*/
public abstract class BaseResponseTO {
private String status;
private String message;
public int getStatus() {
return (BasicUtils.isEmpty(status)) ? -1 : Integer.valueOf(status);
}
public String getMessage() {
return message;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy