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

Domain

import type { Domain } from "https://googleapis.deno.dev/v1/gmailpostmastertools:v2.ts";

Information about a domain registered by the user.

interface Domain {
readonly createTime?: Date;
lastVerifyTime?: Date;
name?: string;
readonly permission?:
| "PERMISSION_UNSPECIFIED"
| "READER"
| "OWNER"
| "NONE";
readonly verificationState?: "VERIFICATION_STATE_UNSPECIFIED" | "UNVERIFIED" | "VERIFIED";
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Immutable. The timestamp at which the domain was added to the user's account.

§
lastVerifyTime?: Date
[src]

The timestamp at which the domain was last verified by the user.

§
name?: string
[src]

Identifier. The resource name of the domain. Format: domains/{domain_name}, where domain_name is the fully qualified domain name (i.e., mymail.mydomain.com).

§
readonly permission?: "PERMISSION_UNSPECIFIED" | "READER" | "OWNER" | "NONE"
[src]

Output only. User's permission of this domain.

§
readonly verificationState?: "VERIFICATION_STATE_UNSPECIFIED" | "UNVERIFIED" | "VERIFIED"
[src]

Output only. Information about a user's verification history and properties for the domain.