Interface IBaseEvent<T>

interface IBaseEvent<T> {
    createdAt?: string;
    deviceId?: string;
    endTime?: null | string;
    id?: string;
    message: string;
    notificationEnabled?: boolean;
    organizationId?: string;
    streamName?: string;
    streamType?: keyof IStreamTypeMap;
    tags?: ITags;
    time: string;
    type?: T;
    updatedAt?: string;
    viewed?: boolean;
}

Type Parameters

Hierarchy (view full)

Properties

createdAt?: string
deviceId?: string
endTime?: null | string
id?: string
message: string
notificationEnabled?: boolean
organizationId?: string
streamName?: string
streamType?: keyof IStreamTypeMap
tags?: ITags
time: string
type?: T
updatedAt?: string
viewed?: boolean

Generated using TypeDoc