org.fisco.bcos.sdk.amop.topic.RequestVerifyData Maven / Gradle / Ivy
The newest version!
package org.fisco.bcos.sdk.amop.topic;
public class RequestVerifyData {
private String topic;
private String topicForCert;
private String nodeId;
public String getTopic() {
return topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
public String getTopicForCert() {
return topicForCert;
}
public void setTopicForCert(String topicForCert) {
this.topicForCert = topicForCert;
}
public String getNodeId() {
return nodeId;
}
public void setNodeId(String nodeId) {
this.nodeId = nodeId;
}
}