class Google::Apis::CustomsearchV1::Search::Queries
Query metadata for the previous, current, and next pages of results.
Attributes
next_page[RW]
Metadata representing the next page of results, if applicable. Corresponds to the JSON property `nextPage` @return [Array<Google::Apis::CustomsearchV1::Search::Queries::NextPage>]
previous_page[RW]
Metadata representing the previous page of results, if applicable. Corresponds to the JSON property `previousPage` @return [Array<Google::Apis::CustomsearchV1::Search::Queries::PreviousPage>]
request[RW]
Metadata representing the current request. Corresponds to the JSON property `request` @return [Array<Google::Apis::CustomsearchV1::Search::Queries::Request>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/customsearch_v1/classes.rb, line 424 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/customsearch_v1/classes.rb, line 429 def update!(**args) @next_page = args[:next_page] if args.key?(:next_page) @previous_page = args[:previous_page] if args.key?(:previous_page) @request = args[:request] if args.key?(:request) end