Show / Hide Table of Contents

Class ModifyIndividualStudentsOptions

Contains fields to add or remove students from a course work or announcement where the assigneeMode is set to INDIVIDUAL_STUDENTS.

Inheritance
System.Object
ModifyIndividualStudentsOptions
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 ModifyIndividualStudentsOptions : IDirectResponseSchema

Properties

AddStudentIds

Ids of students to be added as having access to this coursework/announcement.

Declaration
[JsonProperty("addStudentIds")]
public virtual IList<string> AddStudentIds { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ETag

The ETag of the item.

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

RemoveStudentIds

Ids of students to be removed from having access to this coursework/announcement.

Declaration
[JsonProperty("removeStudentIds")]
public virtual IList<string> RemoveStudentIds { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Implements

IDirectResponseSchema
Back to top