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

AccountPermission

import type { AccountPermission } from "https://googleapis.deno.dev/v1/dfareporting:v4.ts";

AccountPermissions contains information about a particular account permission. Some features of Campaign Manager require an account permission to be present in the account.

interface AccountPermission {
accountProfiles?: "ACCOUNT_PROFILE_BASIC" | "ACCOUNT_PROFILE_STANDARD"[];
id?: bigint;
kind?: string;
level?: "USER" | "ADMINISTRATOR";
name?: string;
permissionGroupId?: bigint;
}

§Properties

§
accountProfiles?: "ACCOUNT_PROFILE_BASIC" | "ACCOUNT_PROFILE_STANDARD"[]
[src]

Account profiles associated with this account permission. Possible values are: - "ACCOUNT_PROFILE_BASIC" - "ACCOUNT_PROFILE_STANDARD"

§
id?: bigint
[src]

ID of this account permission.

§
kind?: string
[src]

Identifies what kind of resource this is. Value: the fixed string "dfareporting#accountPermission".

§
level?: "USER" | "ADMINISTRATOR"
[src]

Administrative level required to enable this account permission.

§
name?: string
[src]

Name of this account permission.

§
permissionGroupId?: bigint
[src]

Permission group of this account permission.