cn.hyperchain.sdk.response.did.DIDResponse 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.did;
import cn.hyperchain.sdk.response.Response;
import com.google.gson.JsonElement;
import com.google.gson.annotations.Expose;
public class DIDResponse extends Response {
@Expose
private String result;
public DIDResponse() {
}
public String getResult() {
return result;
}
@Override
public String toString() {
return "DIDResponse{" +
"result=" + result +
", jsonrpc='" + jsonrpc + '\'' +
", id='" + id + '\'' +
", code=" + code +
", message='" + message + '\'' +
", namespace='" + namespace + '\'' +
"}";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy