enterprises.orbital.evexmlapi.chr.IPlanetaryRoute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eve-xml-api Show documentation
Show all versions of eve-xml-api Show documentation
Library to interact with EVE XML API servers
package enterprises.orbital.evexmlapi.chr;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
@JsonSerialize(as = IPlanetaryRoute.class)
public interface IPlanetaryRoute {
public long getRouteID();
public long getSourcePinID();
public long getDestinationPinID();
public int getContentTypeID();
public String getContentTypeName();
public int getQuantity();
public long getWaypoint1();
public long getWaypoint2();
public long getWaypoint3();
public long getWaypoint4();
public long getWaypoint5();
}