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

ModifyCourseWorkAssigneesRequest

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

Request to modify assignee mode and options of a coursework.

interface ModifyCourseWorkAssigneesRequest {
assigneeMode?: "ASSIGNEE_MODE_UNSPECIFIED" | "ALL_STUDENTS" | "INDIVIDUAL_STUDENTS";
modifyIndividualStudentsOptions?: ModifyIndividualStudentsOptions;
}

§Properties

§
assigneeMode?: "ASSIGNEE_MODE_UNSPECIFIED" | "ALL_STUDENTS" | "INDIVIDUAL_STUDENTS"
[src]

Mode of the coursework describing whether it will be assigned to all students or specified individual students.

§
modifyIndividualStudentsOptions?: ModifyIndividualStudentsOptions
[src]

Set which students are assigned or not assigned to the coursework. Must be specified only when assigneeMode is INDIVIDUAL_STUDENTS.