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

Comment

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

A change about comments on an object.

interface Comment {
assignment?: Assignment;
mentionedUsers?: User[];
post?: Post;
suggestion?: Suggestion;
}

§Properties

§
assignment?: Assignment
[src]

A change on an assignment.

§
mentionedUsers?: User[]
[src]

Users who are mentioned in this comment.

§
post?: Post
[src]

A change on a regular posted comment.

§
suggestion?: Suggestion
[src]

A change on a suggestion.