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

AccountsCreativesListOptions

import type { AccountsCreativesListOptions } from "https://googleapis.deno.dev/v1/adexchangebuyer2:v2beta1.ts";

Additional options for AdExchangeBuyer2#accountsCreativesList.

interface AccountsCreativesListOptions {
pageSize?: number;
pageToken?: string;
query?: string;
}

§Properties

§
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.next_page_token returned from the previous call to 'ListCreatives' method.

§
query?: string
[src]

An optional query string to filter creatives. If no filter is specified, all active creatives will be returned. Supported queries are: - accountId=account_id_string - creativeId=creative_id_string - dealsStatus: {approved, conditionally_approved, disapproved, not_checked} - openAuctionStatus: {approved, conditionally_approved, disapproved, not_checked} - attribute: {a numeric attribute from the list of attributes}

  • disapprovalReason: {a reason from DisapprovalReason} Example: 'accountId=12345 AND (dealsStatus:disapproved AND disapprovalReason:unacceptable_content) OR attribute:47'