Show / Hide Table of Contents

Class ModifyCourseWorkAssigneesRequest

Request to modify assignee mode and options of a coursework.

Inheritance
System.Object
ModifyCourseWorkAssigneesRequest
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Classroom.v1.Data
Assembly: Google.Apis.Classroom.v1.dll
Syntax
public class ModifyCourseWorkAssigneesRequest : IDirectResponseSchema

Properties

AssigneeMode

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

Declaration
[JsonProperty("assigneeMode")]
public virtual string AssigneeMode { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

ModifyIndividualStudentsOptions

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

Declaration
[JsonProperty("modifyIndividualStudentsOptions")]
public virtual ModifyIndividualStudentsOptions ModifyIndividualStudentsOptions { get; set; }
Property Value
Type Description
ModifyIndividualStudentsOptions

Implements

IDirectResponseSchema
Back to top