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

CoursesCourseWorkStudentSubmissionsListOptions

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

Additional options for Classroom#coursesCourseWorkStudentSubmissionsList.

interface CoursesCourseWorkStudentSubmissionsListOptions {
late?: "LATE_VALUES_UNSPECIFIED" | "LATE_ONLY" | "NOT_LATE_ONLY";
pageSize?: number;
pageToken?: string;
states?:
| "SUBMISSION_STATE_UNSPECIFIED"
| "NEW"
| "CREATED"
| "TURNED_IN"
| "RETURNED"
| "RECLAIMED_BY_STUDENT";
userId?: string;
}

§Properties

§
late?: "LATE_VALUES_UNSPECIFIED" | "LATE_ONLY" | "NOT_LATE_ONLY"
[src]

Requested lateness value. If specified, returned student submissions are restricted by the requested value. If unspecified, submissions are returned regardless of late value.

§
pageSize?: number
[src]

Maximum number of items to return. Zero or unspecified indicates that the server may assign a maximum. The server may return fewer than the specified number of results.

§
pageToken?: string
[src]

nextPageToken value returned from a previous list call, indicating that the subsequent page of results should be returned. The list request must be otherwise identical to the one that resulted in this token.

§
states?: "SUBMISSION_STATE_UNSPECIFIED" | "NEW" | "CREATED" | "TURNED_IN" | "RETURNED" | "RECLAIMED_BY_STUDENT"
[src]

Requested submission states. If specified, returned student submissions match one of the specified submission states.

§
userId?: string
[src]

Optional argument to restrict returned student work to those owned by the student with the specified identifier. The identifier can be one of the following: * the numeric identifier for the user * the email address of the user * the string literal "me", indicating the requesting user