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

Note

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

A single note.

interface Note {
readonly attachments?: Attachment[];
body?: Section;
readonly createTime?: Date;
readonly name?: string;
readonly permissions?: Permission[];
title?: string;
readonly trashed?: boolean;
readonly trashTime?: Date;
readonly updateTime?: Date;
}

§Properties

§
readonly attachments?: Attachment[]
[src]

Output only. The attachments attached to this note.

§

The body of the note.

§
readonly createTime?: Date
[src]

Output only. When this note was created.

§
readonly name?: string
[src]

Output only. The resource name of this note. See general note on identifiers in KeepService.

§
readonly permissions?: Permission[]
[src]

Output only. The list of permissions set on the note. Contains at least one entry for the note owner.

§
title?: string
[src]

The title of the note. Length must be less than 1,000 characters.

§
readonly trashed?: boolean
[src]

Output only. true if this note has been trashed. If trashed, the note is eventually deleted.

§
readonly trashTime?: Date
[src]

Output only. When this note was trashed. If trashed, the note is eventually deleted. If the note is not trashed, this field is not set (and the trashed field is false).

§
readonly updateTime?: Date
[src]

Output only. When this note was last modified.