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

BiddersCreativesListOptions

import type { BiddersCreativesListOptions } from "https://googleapis.deno.dev/v1/realtimebidding:v1.ts";

Additional options for realtimeBidding#biddersCreativesList.

interface BiddersCreativesListOptions {
filter?: string;
pageSize?: number;
pageToken?: string;
view?: "CREATIVE_VIEW_UNSPECIFIED" | "SERVING_DECISION_ONLY" | "FULL";
}

§Properties

§
filter?: string
[src]

Query string to filter creatives. If no filter is specified, all active creatives will be returned. Example: 'accountId=12345 AND (dealsStatus:DISAPPROVED AND disapprovalReason:UNACCEPTABLE_CONTENT) OR declaredAttributes:IS_COOKIE_TARGETED'

§
pageSize?: number
[src]

Requested page size. The server may return fewer creatives than requested (due to timeout constraint) even if more are available through another call. If unspecified, server will pick an appropriate default. Acceptable values are 1 to 1000, inclusive.

§
pageToken?: string
[src]

A token identifying a page of results the server should return. Typically, this is the value of ListCreativesResponse.nextPageToken returned from the previous call to the 'ListCreatives' method. Page tokens for continued pages are valid for up to five hours, counting from the call to 'ListCreatives' for the first page.

§
view?: "CREATIVE_VIEW_UNSPECIFIED" | "SERVING_DECISION_ONLY" | "FULL"
[src]

Controls the amount of information included in the response. By default only creativeServingDecision is included. To retrieve the entire creative resource (including the declared fields and the creative content) specify the view as "FULL".