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

MobileAppsListOptions

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

Additional options for dfareporting#mobileAppsList.

interface MobileAppsListOptions {
directories?:
| "UNKNOWN"
| "APPLE_APP_STORE"
| "GOOGLE_PLAY_STORE"
| "ROKU_APP_STORE"
| "AMAZON_FIRETV_APP_STORE"
| "PLAYSTATION_APP_STORE"
| "APPLE_TV_APP_STORE"
| "XBOX_APP_STORE"
| "SAMSUNG_TV_APP_STORE"
| "ANDROID_TV_APP_STORE"
| "GENERIC_CTV_APP_STORE";
ids?: string;
maxResults?: number;
pageToken?: string;
searchString?: string;
}

§Properties

§
directories?: "UNKNOWN" | "APPLE_APP_STORE" | "GOOGLE_PLAY_STORE" | "ROKU_APP_STORE" | "AMAZON_FIRETV_APP_STORE" | "PLAYSTATION_APP_STORE" | "APPLE_TV_APP_STORE" | "XBOX_APP_STORE" | "SAMSUNG_TV_APP_STORE" | "ANDROID_TV_APP_STORE" | "GENERIC_CTV_APP_STORE"
[src]

Select only apps from these directories.

§
ids?: string
[src]

Select only apps 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 objects by name or ID. Wildcards () are allowed. For example, "app2015" will return objects with names like "app Jan 2018", "app Jan 2018", or simply "app 2018". Most of the searches also add wildcards implicitly at the start and the end of the search string. For example, a search string of "app" will match objects with name "my app", "app 2018", or simply "app".