Interface MicrosoftOutlookTriggerNodeParameters

Source
interface MicrosoftOutlookTriggerNodeParameters {
    event?: "messageReceived";
    fields?: (
        | "sender"
        | "body"
        | "subject"
        | "bccRecipients"
        | "bodyPreview"
        | "categories"
        | "ccRecipients"
        | "changeKey"
        | "conversationId"
        | "createdDateTime"
        | "flag"
        | "from"
        | "hasAttachments"
        | "importance"
        | "inferenceClassification"
        | "internetMessageId"
        | "isDeliveryReceiptRequested"
        | "isDraft"
        | "isRead"
        | "isReadReceiptRequested"
        | "lastModifiedDateTime"
        | "parentFolderId"
        | "receivedDateTime"
        | "replyTo"
        | "sentDateTime"
        | "toRecipients"
        | "webLink"
    )[];
    filters?: {
        custom?: string;
        foldersToExclude?: unknown[];
        foldersToInclude?: unknown[];
        hasAttachments?: boolean;
        readStatus?: "read"
        | "both"
        | "unread";
        sender?: string;
    };
    options?: {
        attachmentsPrefix?: string;
        downloadAttachments?: boolean;
    };
    output?: "simple"
    | "fields"
    | "raw";
    pollTimes: {
        item: { mode: string & {} | "everyMinute" }[];
    };
}

Properties§

Source§

readonly event?: "messageReceived"

Default: "messageReceived"

Source§

readonly fields?: (
    | "sender"
    | "body"
    | "subject"
    | "bccRecipients"
    | "bodyPreview"
    | "categories"
    | "ccRecipients"
    | "changeKey"
    | "conversationId"
    | "createdDateTime"
    | "flag"
    | "from"
    | "hasAttachments"
    | "importance"
    | "inferenceClassification"
    | "internetMessageId"
    | "isDeliveryReceiptRequested"
    | "isDraft"
    | "isRead"
    | "isReadReceiptRequested"
    | "lastModifiedDateTime"
    | "parentFolderId"
    | "receivedDateTime"
    | "replyTo"
    | "sentDateTime"
    | "toRecipients"
    | "webLink"
)[]

The fields to add to the output Default: []

Source§

readonly filters?: {
    custom?: string;
    foldersToExclude?: unknown[];
    foldersToInclude?: unknown[];
    hasAttachments?: boolean;
    readStatus?: "read" | "both" | "unread";
    sender?: string;
}

Default: {}

Source§

readonly options?: {
    attachmentsPrefix?: string;
    downloadAttachments?: boolean;
}

Default: {}

Source§

readonly output?: "simple" | "fields" | "raw"

Default: "simple"

Source§

readonly pollTimes: { item: { mode: string & {} | "everyMinute" }[] }