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

GoogleCloudIntegrationsV1alphaJwt

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

Represents JSON web token(JWT), which is a compact, URL-safe means of representing claims to be transferred between two parties, enabling the claims to be digitally signed or integrity protected.

interface GoogleCloudIntegrationsV1alphaJwt {
jwt?: string;
jwtHeader?: string;
jwtPayload?: string;
secret?: string;
}

§Properties

§
jwt?: string
[src]

The token calculated by the header, payload and signature.

§
jwtHeader?: string
[src]

Identifies which algorithm is used to generate the signature.

§
jwtPayload?: string
[src]

Contains a set of claims. The JWT specification defines seven Registered Claim Names which are the standard fields commonly included in tokens. Custom claims are usually also included, depending on the purpose of the token.

§
secret?: string
[src]

User's pre-shared secret to sign the token.