001package com.fs.starfarer.api.campaign.events;
002
003import java.util.Collection;
004
005public interface ReportAPI {
006        boolean hasTag(String tag);
007        Collection<String> getTags();
008        String getEventType();
009        String getEventStage();
010        float getProbability();
011        String getChannel();
012        String getSubject();
013        String getSummary();
014        String getAssessment();
015        String getImage();
016}