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

Topic

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

Topic created by a teacher for the course

interface Topic {
courseId?: string;
name?: string;
topicId?: string;
updateTime?: Date;
}

§Properties

§
courseId?: string
[src]

Identifier of the course. Read-only.

§
name?: string
[src]

The name of the topic, generated by the user. Leading and trailing whitespaces, if any, are trimmed. Also, multiple consecutive whitespaces are collapsed into one inside the name. The result must be a non-empty string. Topic names are case sensitive, and must be no longer than 100 characters.

§
topicId?: string
[src]

Unique identifier for the topic. Read-only.

§
updateTime?: Date
[src]

The time the topic was last updated by the system. Read-only.