Interface SellOrganicData

Base interface shared by all journal event types.

interface SellOrganicData {
    BioData: {
        Bonus: number;
        Genus: string;
        Genus_Localised: string;
        Species: string;
        Species_Localised: string;
        Value: number;
    }[];
    event: "SellOrganicData";
    MarketID: number;
    timestamp: string;
}

Hierarchy (View Summary)

Properties

BioData: {
    Bonus: number;
    Genus: string;
    Genus_Localised: string;
    Species: string;
    Species_Localised: string;
    Value: number;
}[]
event: "SellOrganicData"

The type of event.

MarketID: number
timestamp: string

The time in GMT, ISO 8601.