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

GoogleFirebaseAppcheckV1ExchangeAppAttestAttestationRequest

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

Request message for the ExchangeAppAttestAttestation method.

interface GoogleFirebaseAppcheckV1ExchangeAppAttestAttestationRequest {
attestationStatement?: Uint8Array;
challenge?: Uint8Array;
keyId?: Uint8Array;
limitedUse?: boolean;
}

§Properties

§
attestationStatement?: Uint8Array
[src]

Required. The App Attest statement returned by the client-side App Attest API. This is a base64url encoded CBOR object in the JSON response.

§
challenge?: Uint8Array
[src]

Required. A one-time challenge returned by an immediately prior call to GenerateAppAttestChallenge.

§
keyId?: Uint8Array
[src]

Required. The key ID generated by App Attest for the client app.

§
limitedUse?: boolean
[src]

Specifies whether this attestation is for use in a limited use (true) or session based (false) context. To enable this attestation to be used with the replay protection feature, set this to true. The default value is false.