Class: Google::Apis::ThreatintelligenceV1beta::ListFindingsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ThreatintelligenceV1beta::ListFindingsResponse
- 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
Response message for ListFindings.
Instance Attribute Summary collapse
-
#findings ⇒ Array<Google::Apis::ThreatintelligenceV1beta::Finding>
List of findings.
-
#next_page_token ⇒ String
Page token.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListFindingsResponse
constructor
A new instance of ListFindingsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListFindingsResponse
Returns a new instance of ListFindingsResponse.
1595 1596 1597 |
# File 'lib/google/apis/threatintelligence_v1beta/classes.rb', line 1595 def initialize(**args) update!(**args) end |
Instance Attribute Details
#findings ⇒ Array<Google::Apis::ThreatintelligenceV1beta::Finding>
List of findings.
Corresponds to the JSON property findings
1588 1589 1590 |
# File 'lib/google/apis/threatintelligence_v1beta/classes.rb', line 1588 def findings @findings end |
#next_page_token ⇒ String
Page token.
Corresponds to the JSON property nextPageToken
1593 1594 1595 |
# File 'lib/google/apis/threatintelligence_v1beta/classes.rb', line 1593 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1600 1601 1602 1603 |
# File 'lib/google/apis/threatintelligence_v1beta/classes.rb', line 1600 def update!(**args) @findings = args[:findings] if args.key?(:findings) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |