Class: Google::Apis::ThreatintelligenceV1beta::CustomerProfileWebPresence
- Inherits:
-
Object
- Object
- Google::Apis::ThreatintelligenceV1beta::CustomerProfileWebPresence
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/threatintelligence_v1beta/classes.rb,
lib/google/apis/threatintelligence_v1beta/representations.rb,
lib/google/apis/threatintelligence_v1beta/representations.rb
Overview
Web presence information for the customer profile.
Instance Attribute Summary collapse
-
#citation_ids ⇒ Array<String>
Optional.
-
#domain ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomerProfileWebPresence
constructor
A new instance of CustomerProfileWebPresence.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CustomerProfileWebPresence
Returns a new instance of CustomerProfileWebPresence.
945 946 947 |
# File 'lib/google/apis/threatintelligence_v1beta/classes.rb', line 945 def initialize(**args) update!(**args) end |
Instance Attribute Details
#citation_ids ⇒ Array<String>
Optional. The citation ids for the web presence.
Corresponds to the JSON property citationIds
938 939 940 |
# File 'lib/google/apis/threatintelligence_v1beta/classes.rb', line 938 def citation_ids @citation_ids end |
#domain ⇒ String
Required. The domain name of the web presence.
Corresponds to the JSON property domain
943 944 945 |
# File 'lib/google/apis/threatintelligence_v1beta/classes.rb', line 943 def domain @domain end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
950 951 952 953 |
# File 'lib/google/apis/threatintelligence_v1beta/classes.rb', line 950 def update!(**args) @citation_ids = args[:citation_ids] if args.key?(:citation_ids) @domain = args[:domain] if args.key?(:domain) end |