Interface ICommandDeliveryEvent

interface ICommandDeliveryEvent {
    commandId: string;
    createdAt?: string;
    deviceId?: string;
    endTime?: null | string;
    eventTriggerId?: null | string;
    id?: string;
    message: string;
    metadata?: IDictionary<string>;
    notificationEnabled?: boolean;
    organizationId?: string;
    parentId?: null | string;
    setsDeviceColor?: boolean;
    streamName?: string;
    streamType?: keyof IStreamTypeMap;
    tags: ITags;
    time: string;
    type: "command-delivery";
    updatedAt?: string;
    viewed?: boolean;
}

Hierarchy (view full)

Properties

commandId: string
createdAt?: string
deviceId?: string
endTime?: null | string
eventTriggerId?: null | string
id?: string
message: string
metadata?: IDictionary<string>
notificationEnabled?: boolean
organizationId?: string
parentId?: null | string
setsDeviceColor?: boolean
streamName?: string
streamType?: keyof IStreamTypeMap
tags: ITags
time: string
type: "command-delivery"
updatedAt?: string
viewed?: boolean

Generated using TypeDoc