Class: Google::Apis::WebsecurityscannerV1::ListCrawledUrlsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/websecurityscanner_v1/classes.rb,
generated/google/apis/websecurityscanner_v1/representations.rb,
generated/google/apis/websecurityscanner_v1/representations.rb

Overview

Response for the ListCrawledUrls method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListCrawledUrlsResponse

Returns a new instance of ListCrawledUrlsResponse.



424
425
426
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 424

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

Instance Attribute Details

#crawled_urlsArray<Google::Apis::WebsecurityscannerV1::CrawledUrl>

The list of CrawledUrls returned. Corresponds to the JSON property crawledUrls



416
417
418
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 416

def crawled_urls
  @crawled_urls
end

#next_page_tokenString

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

Returns:

  • (String)


422
423
424
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 422

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



429
430
431
432
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 429

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