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

CreativeFieldsListOptions

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

Additional options for dfareporting#creativeFieldsList.

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

§Properties

§
advertiserIds?: bigint
[src]

Select only creative fields that belong to these advertisers.

§
ids?: bigint
[src]

Select only creative fields 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 fields by name or ID. Wildcards () are allowed. For example, "creativefield2015" will return creative fields with names like "creativefield June 2015", "creativefield April 2015", or simply "creativefield 2015". Most of the searches also add wild-cards implicitly at the start and the end of the search string. For example, a search string of "creativefield" will match creative fields with the name "my creativefield", "creativefield 2015", or simply "creativefield".

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

Field by which to sort the list.

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

Order of sorted results.