com.aliyun.openservices.log.request.ListTopostoreNodeRelationResponse Maven / Gradle / Ivy
package com.aliyun.openservices.log.request;
import java.util.List;
import com.aliyun.openservices.log.common.TopostoreNode;
import com.aliyun.openservices.log.common.TopostoreRelation;
public class ListTopostoreNodeRelationResponse {
private List nodes;
private List relations;
public ListTopostoreNodeRelationResponse() {
}
public ListTopostoreNodeRelationResponse(List nodes, List relations) {
this.nodes = nodes;
this.relations = relations;
}
public List getNodes() {
return this.nodes;
}
public void setNodes(List nodes) {
this.nodes = nodes;
}
public List getRelations() {
return this.relations;
}
public void setRelations(List relations) {
this.relations = relations;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy