class Google::Apis::ContentV2_1::SearchResponse

Response message for the ReportService.Search method.

Attributes

next_page_token[RW]

Token which can be sent as `page_token` to retrieve the next page. If omitted, there are no subsequent pages. Corresponds to the JSON property `nextPageToken` @return [String]

results[RW]

Rows that matched the search query. Corresponds to the JSON property `results` @return [Array<Google::Apis::ContentV2_1::ReportRow>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/content_v2_1/classes.rb, line 13861
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/content_v2_1/classes.rb, line 13866
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @results = args[:results] if args.key?(:results)
end