Interface IEvent

This interface holds all fragments that describe an event object

interface IEvent {
    creationTime?: string;
    id?: string | number;
    self?: string;
    source: ISource;
    text: string;
    time: string;
    type: string;
    [key: string]: any;
}

Hierarchy (view full)

Indexable

  • [key: string]: any

    Custom fragments

Properties

creationTime?: string

Time when event was created in the database

id?: string | number

Uniquely identifies an event

self?: string

Link to this resource

source: ISource

The ManagedObject that the event originated from, see [[ISource]]

text: string

Text description of the event

time: string

Time of the event

type: string

Identifies the type of this event