Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleAdsSearchads360V0Services__SearchSearchAds360Request

import type { GoogleAdsSearchads360V0Services__SearchSearchAds360Request } from "https://googleapis.deno.dev/v1/searchads360:v0.ts";

Request message for SearchAds360Service.Search.

interface GoogleAdsSearchads360V0Services__SearchSearchAds360Request {
pageSize?: number;
pageToken?: string;
query?: string;
returnTotalResultsCount?: boolean;
summaryRowSetting?:
| "UNSPECIFIED"
| "UNKNOWN"
| "NO_SUMMARY_ROW"
| "SUMMARY_ROW_WITH_RESULTS"
| "SUMMARY_ROW_ONLY";
validateOnly?: boolean;
}

§Properties

§
pageSize?: number
[src]

Number of elements to retrieve in a single page. When too large a page is requested, the server may decide to further limit the number of returned resources.

§
pageToken?: string
[src]

Token of the page to retrieve. If not specified, the first page of results will be returned. Use the value obtained from next_page_token in the previous response in order to request the next page of results.

§
query?: string
[src]

Required. The query string.

§
returnTotalResultsCount?: boolean
[src]

If true, the total number of results that match the query ignoring the LIMIT clause will be included in the response. Default is false.

§
summaryRowSetting?: "UNSPECIFIED" | "UNKNOWN" | "NO_SUMMARY_ROW" | "SUMMARY_ROW_WITH_RESULTS" | "SUMMARY_ROW_ONLY"
[src]

Determines whether a summary row will be returned. By default, summary row is not returned. If requested, the summary row will be sent in a response by itself after all other query results are returned.

§
validateOnly?: boolean
[src]

If true, the request is validated but not executed.