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

ProjectsSearchAppsOptions

import type { ProjectsSearchAppsOptions } from "https://googleapis.deno.dev/v1/firebase:v1beta1.ts";

Additional options for Firebase#projectsSearchApps.

interface ProjectsSearchAppsOptions {
filter?: string;
pageSize?: number;
pageToken?: string;
showDeleted?: boolean;
}

§Properties

§
filter?: string
[src]

A query string compatible with Google's AIP-160 standard. Use any of the following fields in a query: * app_id * namespace * platform This query also supports the following "virtual" fields. These are fields which are not actually part of the returned resource object, but they can be queried as if they are pre-populated with specific values. * sha1_hash or sha1_hashes: This field is considered to be a repeated string field, populated with the list of all SHA-1 certificate fingerprints registered with the AndroidApp. This list is empty if the App is not an AndroidApp.

  • sha256_hash or sha256_hashes: This field is considered to be a repeated string field, populated with the list of all SHA-256 certificate fingerprints registered with the AndroidApp. This list is empty if the App is not an AndroidApp. * app_store_id: This field is considered to be a singular string field, populated with the Apple App Store ID registered with the IosApp. This field is empty if the App is not an IosApp. * team_id: This field is considered to be a singular string field, populated with the Apple team ID registered with the IosApp. This field is empty if the App is not an IosApp.
§
pageSize?: number
[src]

The maximum number of Apps to return in the response. The server may return fewer than this value at its discretion. If no value is specified (or too large a value is specified), then the server will impose its own limit. This value cannot be negative.

§
pageToken?: string
[src]

Token returned from a previous call to SearchFirebaseApps indicating where in the set of Apps to resume listing.

§
showDeleted?: boolean
[src]

Controls whether Apps in the DELETED state should be returned. If not specified, only ACTIVE Apps will be returned.