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

GoogleFirebaseAppcheckV1DebugToken

import type { GoogleFirebaseAppcheckV1DebugToken } from "https://googleapis.deno.dev/v1/firebaseappcheck:v1.ts";

A debug token is a secret used during the development or integration testing of an app. It essentially allows the development or integration testing to bypass app attestation while still allowing App Check to enforce protection on supported production Firebase services.

interface GoogleFirebaseAppcheckV1DebugToken {
displayName?: string;
name?: string;
token?: string;
}

§Properties

§
displayName?: string
[src]

Required. A human readable display name used to identify this debug token.

§
name?: string
[src]

Required. The relative resource name of the debug token, in the format:

§
token?: string
[src]

Required. Input only. Immutable. The secret token itself. Must be provided during creation, and must be a UUID4, case insensitive. This field is immutable once set, and cannot be provided during an UpdateDebugToken request. You can, however, delete this debug token using DeleteDebugToken to revoke it. For security reasons, this field will never be populated in any response.