Class: Google::Apis::AlertcenterV1beta1::GmailMessageInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/alertcenter_v1beta1/classes.rb,
lib/google/apis/alertcenter_v1beta1/representations.rb,
lib/google/apis/alertcenter_v1beta1/representations.rb

Overview

Details of a message in phishing spike alert.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GmailMessageInfo

Returns a new instance of GmailMessageInfo.



1334
1335
1336
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1334

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#attachments_sha256_hashArray<String>

The SHA256 hash of email's attachment and all MIME parts. Corresponds to the JSON property attachmentsSha256Hash

Returns:

  • (Array<String>)


1292
1293
1294
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1292

def attachments_sha256_hash
  @attachments_sha256_hash
end

#dateString

The date of the event related to this email. Corresponds to the JSON property date

Returns:

  • (String)


1297
1298
1299
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1297

def date
  @date
end

#md5_hash_message_bodyString

The hash of the message body text. Corresponds to the JSON property md5HashMessageBody

Returns:

  • (String)


1302
1303
1304
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1302

def md5_hash_message_body
  @md5_hash_message_body
end

#md5_hash_subjectString

The MD5 Hash of email's subject (only available for reported emails). Corresponds to the JSON property md5HashSubject

Returns:

  • (String)


1307
1308
1309
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1307

def md5_hash_subject
  @md5_hash_subject
end

#message_body_snippetString

The snippet of the message body text (only available for reported emails). Corresponds to the JSON property messageBodySnippet

Returns:

  • (String)


1312
1313
1314
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1312

def message_body_snippet
  @message_body_snippet
end

#message_idString

The message ID. Corresponds to the JSON property messageId

Returns:

  • (String)


1317
1318
1319
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1317

def message_id
  @message_id
end

#recipientString

The recipient of this email. Corresponds to the JSON property recipient

Returns:

  • (String)


1322
1323
1324
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1322

def recipient
  @recipient
end

#sent_timeString

The sent time of the email. Corresponds to the JSON property sentTime

Returns:

  • (String)


1327
1328
1329
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1327

def sent_time
  @sent_time
end

#subject_textString

The email subject text (only available for reported emails). Corresponds to the JSON property subjectText

Returns:

  • (String)


1332
1333
1334
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1332

def subject_text
  @subject_text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1339

def update!(**args)
  @attachments_sha256_hash = args[:attachments_sha256_hash] if args.key?(:attachments_sha256_hash)
  @date = args[:date] if args.key?(:date)
  @md5_hash_message_body = args[:md5_hash_message_body] if args.key?(:md5_hash_message_body)
  @md5_hash_subject = args[:md5_hash_subject] if args.key?(:md5_hash_subject)
  @message_body_snippet = args[:message_body_snippet] if args.key?(:message_body_snippet)
  @message_id = args[:message_id] if args.key?(:message_id)
  @recipient = args[:recipient] if args.key?(:recipient)
  @sent_time = args[:sent_time] if args.key?(:sent_time)
  @subject_text = args[:subject_text] if args.key?(:subject_text)
end