Class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ServicesSearchSearchAds360Response
- Inherits:
-
Object
- Object
- Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ServicesSearchSearchAds360Response
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/searchads360_v0/classes.rb,
lib/google/apis/searchads360_v0/representations.rb,
lib/google/apis/searchads360_v0/representations.rb
Overview
Response message for SearchAds360Service.Search.
Instance Attribute Summary collapse
-
#custom_column_headers ⇒ Array<Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ServicesCustomColumnHeader>
The headers of the custom columns in the results.
-
#field_mask ⇒ String
FieldMask that represents what fields were requested by the user.
-
#next_page_token ⇒ String
Pagination token used to retrieve the next page of results.
-
#results ⇒ Array<Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ServicesSearchAds360Row>
The list of rows that matched the query.
-
#summary_row ⇒ Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ServicesSearchAds360Row
A returned row from the query.
-
#total_results_count ⇒ Fixnum
Total number of results that match the query ignoring the LIMIT clause.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAdsSearchads360V0ServicesSearchSearchAds360Response
constructor
A new instance of GoogleAdsSearchads360V0ServicesSearchSearchAds360Response.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAdsSearchads360V0ServicesSearchSearchAds360Response
Returns a new instance of GoogleAdsSearchads360V0ServicesSearchSearchAds360Response.
4896 4897 4898 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 4896 def initialize(**args) update!(**args) end |
Instance Attribute Details
#custom_column_headers ⇒ Array<Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ServicesCustomColumnHeader>
The headers of the custom columns in the results.
Corresponds to the JSON property customColumnHeaders
4867 4868 4869 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 4867 def custom_column_headers @custom_column_headers end |
#field_mask ⇒ String
FieldMask that represents what fields were requested by the user.
Corresponds to the JSON property fieldMask
4872 4873 4874 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 4872 def field_mask @field_mask end |
#next_page_token ⇒ String
Pagination token used to retrieve the next page of results. Pass the content
of this string as the page_token attribute of the next request.
next_page_token is not returned for the last page.
Corresponds to the JSON property nextPageToken
4879 4880 4881 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 4879 def next_page_token @next_page_token end |
#results ⇒ Array<Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ServicesSearchAds360Row>
The list of rows that matched the query.
Corresponds to the JSON property results
4884 4885 4886 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 4884 def results @results end |
#summary_row ⇒ Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ServicesSearchAds360Row
A returned row from the query.
Corresponds to the JSON property summaryRow
4889 4890 4891 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 4889 def summary_row @summary_row end |
#total_results_count ⇒ Fixnum
Total number of results that match the query ignoring the LIMIT clause.
Corresponds to the JSON property totalResultsCount
4894 4895 4896 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 4894 def total_results_count @total_results_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4901 4902 4903 4904 4905 4906 4907 4908 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 4901 def update!(**args) @custom_column_headers = args[:custom_column_headers] if args.key?(:custom_column_headers) @field_mask = args[:field_mask] if args.key?(:field_mask) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @results = args[:results] if args.key?(:results) @summary_row = args[:summary_row] if args.key?(:summary_row) @total_results_count = args[:total_results_count] if args.key?(:total_results_count) end |