class Google::Apis::ClassroomV1::ModifyIndividualStudentsOptions

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

Attributes

add_student_ids[RW]

IDs of students to be added as having access to this coursework/announcement. Corresponds to the JSON property `addStudentIds` @return [Array<String>]

remove_student_ids[RW]

IDs of students to be removed from having access to this coursework/ announcement. Corresponds to the JSON property `removeStudentIds` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/classroom_v1/classes.rb, line 1646
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/classroom_v1/classes.rb, line 1651
def update!(**args)
  @add_student_ids = args[:add_student_ids] if args.key?(:add_student_ids)
  @remove_student_ids = args[:remove_student_ids] if args.key?(:remove_student_ids)
end