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

Account

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

Representation of an account.

interface Account {
readonly createTime?: Date;
readonly displayName?: string;
readonly name?: string;
readonly pendingTasks?: string[];
readonly premium?: boolean;
readonly state?:
| "STATE_UNSPECIFIED"
| "READY"
| "NEEDS_ATTENTION"
| "CLOSED";
timeZone?: TimeZone;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Creation time of the account.

§
readonly displayName?: string
[src]

Output only. Display name of this account.

§
readonly name?: string
[src]

Output only. Resource name of the account. Format: accounts/pub-[0-9]+

§
readonly pendingTasks?: string[]
[src]

Output only. Outstanding tasks that need to be completed as part of the sign-up process for a new account. e.g. "billing-profile-creation", "phone-pin-verification".

§
readonly premium?: boolean
[src]

Output only. Whether this account is premium.

§
readonly state?: "STATE_UNSPECIFIED" | "READY" | "NEEDS_ATTENTION" | "CLOSED"
[src]

Output only. State of the account.

§
timeZone?: TimeZone
[src]

The account time zone, as used by reporting. For more information, see changing the time zone of your reports.