class Google::Apis::FactchecktoolsV1alpha1::GoogleFactcheckingFactchecktoolsV1alpha1FactCheckedClaimSearchResponse
Response from searching fact-checked claims.
Attributes
claims[RW]
The list of claims and all of their associated information. Corresponds to the JSON property `claims` @return [Array<Google::Apis::FactchecktoolsV1alpha1::GoogleFactcheckingFactchecktoolsV1alpha1Claim>]
next_page_token[RW]
The next pagination token in the Search response. It should be used as the ` page_token` for the following request. An empty value means no more results. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/factchecktools_v1alpha1/classes.rb, line 373 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/factchecktools_v1alpha1/classes.rb, line 378 def update!(**args) @claims = args[:claims] if args.key?(:claims) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end