Interface IAnnotation

interface IAnnotation {
    annotationTemplateId?: null | string;
    createdAt?: string;
    deviceId?: string;
    editedAt?: string;
    endTime?: null | string;
    id?: string;
    message: string;
    note?: null | string;
    notificationEnabled?: boolean;
    organizationId?: string;
    publishedTo?: ISpreadsheetIdRange;
    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
id?: string
message: string
note?: null | string
notificationEnabled?: boolean
organizationId?: string
publishedTo?: ISpreadsheetIdRange
streamName?: string
streamType?: keyof IStreamTypeMap
taggedUsers?: null | ITaggedUsers
tags?: ITags
time: string
type?: "annotation"
updatedAt?: string
userId: string
viewed?: boolean

Generated using TypeDoc