Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GmailMessageInfo

import type { GmailMessageInfo } from "https://googleapis.deno.dev/v1/alertcenter:v1beta1.ts";

Details of a message in phishing spike alert.

interface GmailMessageInfo {
attachmentsSha256Hash?: string[];
date?: Date;
md5HashMessageBody?: string;
md5HashSubject?: string;
messageBodySnippet?: string;
messageId?: string;
recipient?: string;
sentTime?: Date;
subjectText?: string;
}

§Properties

§
attachmentsSha256Hash?: string[]
[src]

The SHA256 hash of email's attachment and all MIME parts.

§
date?: Date
[src]

The date of the event related to this email.

§
md5HashMessageBody?: string
[src]

The hash of the message body text.

§
md5HashSubject?: string
[src]

The MD5 Hash of email's subject (only available for reported emails).

§
messageBodySnippet?: string
[src]

The snippet of the message body text (only available for reported emails).

§
messageId?: string
[src]

The message ID.

§
recipient?: string
[src]

The recipient of this email.

§
sentTime?: Date
[src]

The sent time of the email.

§
subjectText?: string
[src]

The email subject text (only available for reported emails).