class Google::Apis::LocalservicesV1::GoogleAdsHomeservicesLocalservicesV1SearchDetailedLeadReportsResponse
A page of the response received from the SearchDetailedLeadReports 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
detailed_lead_reports[RW]
List of detailed lead reports uniquely identified by external lead id. Corresponds to the JSON property `detailedLeadReports` @return [Array<Google::Apis::LocalservicesV1::GoogleAdsHomeservicesLocalservicesV1DetailedLeadReport>]
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 394 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 399 def update!(**args) @detailed_lead_reports = args[:detailed_lead_reports] if args.key?(:detailed_lead_reports) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end