Class: Google::Apis::WebsecurityscannerV1alpha::ListCrawledUrlsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::WebsecurityscannerV1alpha::ListCrawledUrlsResponse
 
- 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 ListCrawledUrls method.
Instance Attribute Summary collapse
- 
  
    
      #crawled_urls  ⇒ Array<Google::Apis::WebsecurityscannerV1alpha::CrawledUrl> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of CrawledUrls 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)  ⇒ ListCrawledUrlsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListCrawledUrlsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListCrawledUrlsResponse
Returns a new instance of ListCrawledUrlsResponse
| 331 332 333 | # File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 331 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#crawled_urls ⇒ Array<Google::Apis::WebsecurityscannerV1alpha::CrawledUrl>
The list of CrawledUrls returned.
Corresponds to the JSON property crawledUrls
| 323 324 325 | # File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 323 def crawled_urls @crawled_urls 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
| 329 330 331 | # File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 329 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 336 337 338 339 | # File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 336 def update!(**args) @crawled_urls = args[:crawled_urls] if args.key?(:crawled_urls) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |