class Google::Apis::LocalservicesV1::GoogleAdsHomeservicesLocalservicesV1SearchAccountReportsResponse

A page of the response received from the SearchAccountReports method. A paginated response where more pages are available has `next_page_token` set. This token can be used in a subsequent request to retrieve the next request page.

Attributes

account_reports[RW]

List of account reports which maps 1:1 to a particular linked GLS account. Corresponds to the JSON property `accountReports` @return [Array<Google::Apis::LocalservicesV1::GoogleAdsHomeservicesLocalservicesV1AccountReport>]

next_page_token[RW]

Pagination token to retrieve the next page of results. When `next_page_token` is not filled in, there is no next page and the list returned is the last page in the result set. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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