Class: Google::Apis::AlertcenterV1beta1::GmailMessageInfo
- Inherits:
-
Object
- Object
- Google::Apis::AlertcenterV1beta1::GmailMessageInfo
- 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
-
#attachments_sha256_hash ⇒ Array<String>
The
SHA256
hash of email's attachment and all MIME parts. -
#date ⇒ String
The date of the event related to this email.
-
#md5_hash_message_body ⇒ String
The hash of the message body text.
-
#md5_hash_subject ⇒ String
The MD5 Hash of email's subject (only available for reported emails).
-
#message_body_snippet ⇒ String
The snippet of the message body text (only available for reported emails).
-
#message_id ⇒ String
The message ID.
-
#recipient ⇒ String
The recipient of this email.
-
#sent_time ⇒ String
The sent time of the email.
-
#subject_text ⇒ String
The email subject text (only available for reported emails).
Instance Method Summary collapse
-
#initialize(**args) ⇒ GmailMessageInfo
constructor
A new instance of GmailMessageInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GmailMessageInfo
Returns a new instance of GmailMessageInfo.
1264 1265 1266 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1264 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attachments_sha256_hash ⇒ Array<String>
The SHA256
hash of email's attachment and all MIME parts.
Corresponds to the JSON property attachmentsSha256Hash
1222 1223 1224 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1222 def @attachments_sha256_hash end |
#date ⇒ String
The date of the event related to this email.
Corresponds to the JSON property date
1227 1228 1229 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1227 def date @date end |
#md5_hash_message_body ⇒ String
The hash of the message body text.
Corresponds to the JSON property md5HashMessageBody
1232 1233 1234 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1232 def @md5_hash_message_body end |
#md5_hash_subject ⇒ String
The MD5 Hash of email's subject (only available for reported emails).
Corresponds to the JSON property md5HashSubject
1237 1238 1239 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1237 def md5_hash_subject @md5_hash_subject end |
#message_body_snippet ⇒ String
The snippet of the message body text (only available for reported emails).
Corresponds to the JSON property messageBodySnippet
1242 1243 1244 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1242 def @message_body_snippet end |
#message_id ⇒ String
The message ID.
Corresponds to the JSON property messageId
1247 1248 1249 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1247 def @message_id end |
#recipient ⇒ String
The recipient of this email.
Corresponds to the JSON property recipient
1252 1253 1254 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1252 def recipient @recipient end |
#sent_time ⇒ String
The sent time of the email.
Corresponds to the JSON property sentTime
1257 1258 1259 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1257 def sent_time @sent_time end |
#subject_text ⇒ String
The email subject text (only available for reported emails).
Corresponds to the JSON property subjectText
1262 1263 1264 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1262 def subject_text @subject_text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1269 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 |