cn.hyperchain.sdk.response.config.RoleExistResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of litesdk Show documentation
Show all versions of litesdk Show documentation
A Java client tool for Hyperchain
package cn.hyperchain.sdk.response.config;
import cn.hyperchain.sdk.response.Response;
import com.google.gson.annotations.Expose;
public class RoleExistResponse extends Response {
@Expose
private boolean result;
public boolean isRoleExist() {
return result;
}
@Override
public String toString() {
return "RoleExistResponse{" +
"result=" + result +
", jsonrpc='" + jsonrpc + '\'' +
", id='" + id + '\'' +
", code=" + code +
", message='" + message + '\'' +
", namespace='" + namespace + '\'' +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy