Interface ProspectedAsteroid

Base interface shared by all journal event types.

interface ProspectedAsteroid {
    Content: string;
    Content_Localised: string;
    Materials: {
        Name: string;
        Name_Localised?: string;
        Proportion: number;
    }[];
    MotherlodeMaterial?: string;
    MotherlodeMaterial_Localised?: string;
    Remaining: number;
    event: "ProspectedAsteroid";
    timestamp: string;
}

Hierarchy (view full)

Properties

Content: string
Content_Localised: string
Materials: {
    Name: string;
    Name_Localised?: string;
    Proportion: number;
}[]

Type declaration

  • Name: string
  • Optional Name_Localised?: string
  • Proportion: number
MotherlodeMaterial?: string
MotherlodeMaterial_Localised?: string
Remaining: number
event: "ProspectedAsteroid"

The type of event.

timestamp: string

The time in GMT, ISO 8601.