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

ShaCertificate

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

A SHA-1 or SHA-256 certificate associated with the AndroidApp.

interface ShaCertificate {
certType?: "SHA_CERTIFICATE_TYPE_UNSPECIFIED" | "SHA_1" | "SHA_256";
name?: string;
shaHash?: string;
}

§Properties

§
certType?: "SHA_CERTIFICATE_TYPE_UNSPECIFIED" | "SHA_1" | "SHA_256"
[src]

The type of SHA certificate encoded in the hash.

§
name?: string
[src]

The resource name of the ShaCertificate for the AndroidApp, in the format: projects/PROJECT_IDENTIFIER/androidApps/APP_ID/sha/SHA_HASH * PROJECT_IDENTIFIER: the parent Project's ProjectNumber (recommended) or its ProjectId. Learn more about using project identifiers in Google's AIP 2510 standard. Note that the value for PROJECT_IDENTIFIER in any response body will be the ProjectId. * APP_ID: the globally unique, Firebase-assigned identifier for the App (see appId). * SHA_HASH: the certificate hash for the App (see shaHash).

§
shaHash?: string
[src]

The certificate hash for the AndroidApp.