Class: Google::Apis::AlertcenterV1beta1::MaliciousEntity

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

Entity whose actions triggered a Gmail phishing alert.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MaliciousEntity

Returns a new instance of MaliciousEntity.



1468
1469
1470
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1468

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

Instance Attribute Details

#display_nameString

The header from display name. Corresponds to the JSON property displayName

Returns:

  • (String)


1456
1457
1458
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1456

def display_name
  @display_name
end

#entityGoogle::Apis::AlertcenterV1beta1::User

A user. Corresponds to the JSON property entity



1461
1462
1463
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1461

def entity
  @entity
end

#from_headerString

The sender email address. Corresponds to the JSON property fromHeader

Returns:

  • (String)


1466
1467
1468
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1466

def from_header
  @from_header
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1473
1474
1475
1476
1477
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1473

def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @entity = args[:entity] if args.key?(:entity)
  @from_header = args[:from_header] if args.key?(:from_header)
end