Interface Synthesis

Base interface shared by all journal event types.

interface Synthesis {
    Materials: {
        Count?: number;
        Name: string;
        Name_Localised?: string;
        Percent?: number;
    }[];
    Name: string;
    event: "Synthesis";
    timestamp: string;
}

Hierarchy (view full)

Properties

Materials: {
    Count?: number;
    Name: string;
    Name_Localised?: string;
    Percent?: number;
}[]

Type declaration

  • Optional Count?: number
  • Name: string
  • Optional Name_Localised?: string
  • Optional Percent?: number
Name: string
event: "Synthesis"

The type of event.

timestamp: string

The time in GMT, ISO 8601.