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

Assignment

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

A comment with an assignment.

interface Assignment {
assignedUser?: User;
subtype?:
| "SUBTYPE_UNSPECIFIED"
| "ADDED"
| "DELETED"
| "REPLY_ADDED"
| "REPLY_DELETED"
| "RESOLVED"
| "REOPENED"
| "REASSIGNED";
}

§Properties

§
assignedUser?: User
[src]

The user to whom the comment was assigned.

§
subtype?: "SUBTYPE_UNSPECIFIED" | "ADDED" | "DELETED" | "REPLY_ADDED" | "REPLY_DELETED" | "RESOLVED" | "REOPENED" | "REASSIGNED"
[src]

The sub-type of this event.