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

Verification

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

A verification represents a verification attempt on a location.

interface Verification {
announcement?: string;
createTime?: Date;
method?:
| "VERIFICATION_METHOD_UNSPECIFIED"
| "ADDRESS"
| "EMAIL"
| "PHONE_CALL"
| "SMS"
| "AUTO"
| "VETTED_PARTNER";
name?: string;
state?:
| "STATE_UNSPECIFIED"
| "PENDING"
| "COMPLETED"
| "FAILED";
}

§Properties

§
announcement?: string
[src]

Optional. Response announcement set only if the method is VETTED_PARTNER.

§
createTime?: Date
[src]

The timestamp when the verification is requested.

§
method?: "VERIFICATION_METHOD_UNSPECIFIED" | "ADDRESS" | "EMAIL" | "PHONE_CALL" | "SMS" | "AUTO" | "VETTED_PARTNER"
[src]

The method of the verification.

§
name?: string
[src]

Resource name of the verification.

§
state?: "STATE_UNSPECIFIED" | "PENDING" | "COMPLETED" | "FAILED"
[src]

The state of the verification.