Interface IAnnotation

interface IAnnotation {
    annotationTemplateId?: null | string;
    createdAt?: string;
    deviceId?: string;
    editedAt?: string;
    endTime?: null | string;
    eventTriggerId?: null | string;
    id?: string;
    message: string;
    metadata?: IDictionary<string>;
    note?: null | string;
    notificationEnabled?: boolean;
    organizationId?: string;
    parentId?: null | string;
    publishedTo?: ISpreadsheetIdRange;
    setsDeviceColor?: boolean;
    streamName?: string;
    streamType?: keyof IStreamTypeMap;
    taggedUsers?: null | ITaggedUsers;
    tags: ITags;
    time: string;
    type: "annotation";
    updatedAt?: string;
    userId: string;
    viewed?: boolean;
}

Hierarchy (view full)

Properties

annotationTemplateId?: null | string
createdAt?: string
deviceId?: string
editedAt?: string
endTime?: null | string
eventTriggerId?: null | string
id?: string
message: string
metadata?: IDictionary<string>
note?: null | string
notificationEnabled?: boolean
organizationId?: string
parentId?: null | string
publishedTo?: ISpreadsheetIdRange
setsDeviceColor?: boolean
streamName?: string
streamType?: keyof IStreamTypeMap
taggedUsers?: null | ITaggedUsers
tags: ITags
time: string
type: "annotation"
updatedAt?: string
userId: string
viewed?: boolean

Generated using TypeDoc