Interface SendText

Base interface shared by all journal event types.

interface SendText {
    event: "SendText";
    Message: string;
    Sent?: boolean;
    timestamp: string;
    To: string;
    To_Localised?: string;
}

Hierarchy (View Summary)

Properties

event: "SendText"

The type of event.

Message: string
Sent?: boolean
timestamp: string

The time in GMT, ISO 8601.

To: string
To_Localised?: string