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

RotatingBarcodeTotpDetails

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

Configuration for the time-based OTP substitutions. See https://tools.ietf.org/html/rfc6238

interface RotatingBarcodeTotpDetails {
algorithm?: "TOTP_ALGORITHM_UNSPECIFIED" | "TOTP_SHA1";
periodMillis?: bigint;
}

§Properties

§
algorithm?: "TOTP_ALGORITHM_UNSPECIFIED" | "TOTP_SHA1"
[src]

The TOTP algorithm used to generate the OTP.

§

The TOTP parameters for each of the {totp_value_*} substitutions. The TotpParameters at index n is used for the {totp_value_n} substitution.

§
periodMillis?: bigint
[src]

The time interval used for the TOTP value generation, in milliseconds.