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

BillingProfilesListOptions

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

Additional options for dfareporting#billingProfilesList.

interface BillingProfilesListOptions {
currency_code?: string;
ids?: bigint;
maxResults?: number;
name?: string;
onlySuggestion?: boolean;
pageToken?: string;
sortField?: "ID" | "NAME";
sortOrder?: "ASCENDING" | "DESCENDING";
status?: "UNDER_REVIEW" | "ACTIVE" | "ARCHIVED";
subaccountIds?: bigint;
}

§Properties

§
currency_code?: string
[src]

Select only billing profile with currency.

§
ids?: bigint
[src]

Select only billing profile with these IDs.

§
maxResults?: number
[src]

Maximum number of results to return.

§
name?: string
[src]

Allows searching for billing profiles by name. Wildcards () are allowed. For example, "profile2020" will return objects with names like "profile June 2020", "profile April 2020", or simply "profile 2020". Most of the searches also add wildcards implicitly at the start and the end of the search string. For example, a search string of "profile" will match objects with name "my profile", "profile 2021", or simply "profile".

§
onlySuggestion?: boolean
[src]

Select only billing profile which is suggested for the currency_code & subaccount_id using the Billing Suggestion API.

§
pageToken?: string
[src]

Value of the nextPageToken from the previous result page.

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

Field by which to sort the list.

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

Order of sorted results.

§
status?: "UNDER_REVIEW" | "ACTIVE" | "ARCHIVED"
[src]

Select only billing profile with the specified status.

§
subaccountIds?: bigint
[src]

Select only billing profile with the specified subaccount.When only_suggestion is true, only a single subaccount_id is supported.