enterprises.orbital.evexmlapi.crp.IOutpost 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.crp;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
@JsonSerialize(
as = IOutpost.class)
public interface IOutpost {
public long getStationID();
public long getOwnerID();
public String getStationName();
public int getSolarSystemID();
public double getDockingCostPerShipVolume();
public double getOfficeRentalCost();
public int getStationTypeID();
public double getReprocessingEfficiency();
public double getReprocessingStationTake();
public long getStandingOwnerID();
public long getX();
public long getY();
public long getZ();
}