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

User

import type { User } from "https://googleapis.deno.dev/v1/drive:v3.ts";

Information about a Drive user.

interface User {
readonly displayName?: string;
readonly emailAddress?: string;
readonly kind?: string;
readonly me?: boolean;
readonly permissionId?: string;
readonly photoLink?: string;
}

§Properties

§
readonly displayName?: string
[src]

Output only. A plain text displayable name for this user.

§
readonly emailAddress?: string
[src]

Output only. The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester.

§
readonly kind?: string
[src]

Output only. Identifies what kind of resource this is. Value: the fixed string drive#user.

§
readonly me?: boolean
[src]

Output only. Whether this user is the requesting user.

§
readonly permissionId?: string
[src]

Output only. The user's ID as visible in Permission resources.