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

GoogleCloudRecaptchaenterpriseV1TransactionDataUser

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

Details about a user's account involved in the transaction.

interface GoogleCloudRecaptchaenterpriseV1TransactionDataUser {
accountId?: string;
creationMs?: bigint;
email?: string;
emailVerified?: boolean;
phoneNumber?: string;
phoneVerified?: boolean;
}

§Properties

§
accountId?: string
[src]

Optional. Unique account identifier for this user. If using account defender, this should match the hashed_account_id field. Otherwise, a unique and persistent identifier for this account.

§
creationMs?: bigint
[src]

Optional. The epoch milliseconds of the user's account creation.

§
email?: string
[src]

Optional. The email address of the user.

§
emailVerified?: boolean
[src]

Optional. Whether the email has been verified to be accessible by the user (OTP or similar).

§
phoneNumber?: string
[src]

Optional. The phone number of the user, with country code.

§
phoneVerified?: boolean
[src]

Optional. Whether the phone number has been verified to be accessible by the user (OTP or similar).