Show / Hide Table of Contents

Class GmailMessageInfo

Details of a message in phishing spike alert.

Inheritance
System.Object
GmailMessageInfo
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.AlertCenter.v1beta1.Data
Assembly: Google.Apis.AlertCenter.v1beta1.dll
Syntax
public class GmailMessageInfo : IDirectResponseSchema

Properties

AttachmentsSha256Hash

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

Declaration
[JsonProperty("attachmentsSha256Hash")]
public virtual IList<string> AttachmentsSha256Hash { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Date

The date the malicious email was sent.

Declaration
[JsonProperty("date")]
public virtual object Date { get; set; }
Property Value
Type Description
System.Object

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Md5HashMessageBody

The hash of the message body text.

Declaration
[JsonProperty("md5HashMessageBody")]
public virtual string Md5HashMessageBody { get; set; }
Property Value
Type Description
System.String

Md5HashSubject

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

Declaration
[JsonProperty("md5HashSubject")]
public virtual string Md5HashSubject { get; set; }
Property Value
Type Description
System.String

MessageBodySnippet

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

Declaration
[JsonProperty("messageBodySnippet")]
public virtual string MessageBodySnippet { get; set; }
Property Value
Type Description
System.String

MessageId

The message ID.

Declaration
[JsonProperty("messageId")]
public virtual string MessageId { get; set; }
Property Value
Type Description
System.String

Recipient

The recipient of this email.

Declaration
[JsonProperty("recipient")]
public virtual string Recipient { get; set; }
Property Value
Type Description
System.String

SubjectText

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

Declaration
[JsonProperty("subjectText")]
public virtual string SubjectText { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top