All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.leheyue.magicapi.nebula.response.EdgeId Maven / Gradle / Ivy

There is a newer version: 2.1.1.6.7
Show newest version
package io.github.leheyue.magicapi.nebula.response;

public class EdgeId {

    private String ranking;
    private String name;
    private Integer type;
    private String dst;
    private String src;

    public String getRanking() {
        return ranking;
    }

    public void setRanking(String ranking) {
        this.ranking = ranking;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Integer getType() {
        return type;
    }

    public void setType(Integer type) {
        this.type = type;
    }

    public String getDst() {
        return dst;
    }

    public void setDst(String dst) {
        this.dst = dst;
    }

    public String getSrc() {
        return src;
    }

    public void setSrc(String src) {
        this.src = src;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy