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

BlogPerUserInfo

import type { BlogPerUserInfo } from "https://googleapis.deno.dev/v1/blogger:v3.ts";
interface BlogPerUserInfo {
blogId?: string;
hasAdminAccess?: boolean;
kind?: string;
photosAlbumKey?: string;
role?:
| "VIEW_TYPE_UNSPECIFIED"
| "READER"
| "AUTHOR"
| "ADMIN";
userId?: string;
}

§Properties

§
blogId?: string
[src]

ID of the Blog resource.

§
hasAdminAccess?: boolean
[src]

True if the user has Admin level access to the blog.

§
kind?: string
[src]

The kind of this entity. Always blogger#blogPerUserInfo.

§
photosAlbumKey?: string
[src]

The Photo Album Key for the user when adding photos to the blog.

§
role?: "VIEW_TYPE_UNSPECIFIED" | "READER" | "AUTHOR" | "ADMIN"
[src]

Access permissions that the user has for the blog (ADMIN, AUTHOR, or READER).

§
userId?: string
[src]

ID of the User.