Class: Google::Apis::WebsecurityscannerV1::ListFindingsResponse

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 ListFindings method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListFindingsResponse

Returns a new instance of ListFindingsResponse.



473
474
475
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 473

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

Instance Attribute Details

#findingsArray<Google::Apis::WebsecurityscannerV1::Finding>

The list of Findings returned. Corresponds to the JSON property findings



465
466
467
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 465

def findings
  @findings
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)


471
472
473
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 471

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



478
479
480
481
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 478

def update!(**args)
  @findings = args[:findings] if args.key?(:findings)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end