Class: Google::Apis::WebsecurityscannerV1alpha::ListFindingsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::WebsecurityscannerV1alpha::ListFindingsResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/websecurityscanner_v1alpha/classes.rb,
 generated/google/apis/websecurityscanner_v1alpha/representations.rb,
 generated/google/apis/websecurityscanner_v1alpha/representations.rb
Overview
Response for the ListFindings method.
Instance Attribute Summary collapse
- 
  
    
      #findings  ⇒ Array<Google::Apis::WebsecurityscannerV1alpha::Finding> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of Findings returned. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Token to retrieve the next page of results, or empty if there are no more results in the list. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListFindingsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListFindingsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListFindingsResponse
Returns a new instance of ListFindingsResponse
| 376 377 378 | # File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 376 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#findings ⇒ Array<Google::Apis::WebsecurityscannerV1alpha::Finding>
The list of Findings returned.
Corresponds to the JSON property findings
| 368 369 370 | # File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 368 def findings @findings end | 
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no
more results in the list.
Corresponds to the JSON property nextPageToken
| 374 375 376 | # File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 374 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 381 382 383 384 | # File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 381 def update!(**args) @findings = args[:findings] if args.key?(:findings) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |