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

CreativeFieldValuesListOptions

import type { CreativeFieldValuesListOptions } from "https://googleapis.deno.dev/v1/dfareporting:v4.ts";

Additional options for dfareporting#creativeFieldValuesList.

interface CreativeFieldValuesListOptions {
ids?: bigint;
maxResults?: number;
pageToken?: string;
searchString?: string;
sortField?: "ID" | "VALUE";
sortOrder?: "ASCENDING" | "DESCENDING";
}

§Properties

§
ids?: bigint
[src]

Select only creative field values with these IDs.

§
maxResults?: number
[src]

Maximum number of results to return.

§
pageToken?: string
[src]

Value of the nextPageToken from the previous result page.

§
searchString?: string
[src]

Allows searching for creative field values by their values. Wildcards (e.g. *) are not allowed.

§
sortField?: "ID" | "VALUE"
[src]

Field by which to sort the list.

§
sortOrder?: "ASCENDING" | "DESCENDING"
[src]

Order of sorted results.