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

Person

import type { Person } from "https://googleapis.deno.dev/v1/docs:v1.ts";

A person or email address mentioned in a document. These mentions behave as a single, immutable element containing the person's name or email address.

interface Person {
readonly personId?: string;
readonly personProperties?: PersonProperties;
suggestedDeletionIds?: string[];
suggestedInsertionIds?: string[];
suggestedTextStyleChanges?: {
[key: string]: SuggestedTextStyle;
}
;
textStyle?: TextStyle;
}

§Properties

§
readonly personId?: string
[src]

Output only. The unique ID of this link.

§
readonly personProperties?: PersonProperties
[src]

Output only. The properties of this Person. This field is always present.

§
suggestedDeletionIds?: string[]
[src]

IDs for suggestions that remove this person link from the document. A Person might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.

§
suggestedInsertionIds?: string[]
[src]

IDs for suggestions that insert this person link into the document. A Person might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.

§
suggestedTextStyleChanges?: {
[key: string]: SuggestedTextStyle;
}
[src]

The suggested text style changes to this Person, keyed by suggestion ID.

§
textStyle?: TextStyle
[src]

The text style of this Person.