Class: Google::Apis::ClassroomV1::ModifyIndividualStudentsOptions

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/classroom_v1/classes.rb,
lib/google/apis/classroom_v1/representations.rb,
lib/google/apis/classroom_v1/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ModifyIndividualStudentsOptions

Returns a new instance of ModifyIndividualStudentsOptions.



2004
2005
2006
# File 'lib/google/apis/classroom_v1/classes.rb', line 2004

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#add_student_idsArray<String>

IDs of students to be added as having access to this coursework/announcement. Corresponds to the JSON property addStudentIds

Returns:

  • (Array<String>)


1996
1997
1998
# File 'lib/google/apis/classroom_v1/classes.rb', line 1996

def add_student_ids
  @add_student_ids
end

#remove_student_idsArray<String>

IDs of students to be removed from having access to this coursework/ announcement. Corresponds to the JSON property removeStudentIds

Returns:

  • (Array<String>)


2002
2003
2004
# File 'lib/google/apis/classroom_v1/classes.rb', line 2002

def remove_student_ids
  @remove_student_ids
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2009
2010
2011
2012
# File 'lib/google/apis/classroom_v1/classes.rb', line 2009

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