enterprises.orbital.evexmlapi.crp.IMemberTracking 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 java.util.Date;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
@JsonSerialize(as = IMemberTracking.class)
public interface IMemberTracking {
public String getBase();
public int getBaseID();
public long getCharacterID();
public long getGrantableRoles();
public String getLocation();
public int getLocationID();
public Date getLogoffDateTime();
public Date getLogonDateTime();
public String getName();
public long getRoles();
public String getShipType();
public int getShipTypeID();
public Date getStartDateTime();
public String getTitle();
}