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

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/classroom_v1/classes.rb,
generated/google/apis/classroom_v1/representations.rb,
generated/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

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ModifyIndividualStudentsOptions

Returns a new instance of ModifyIndividualStudentsOptions.



1590
1591
1592
# File 'generated/google/apis/classroom_v1/classes.rb', line 1590

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>)


1582
1583
1584
# File 'generated/google/apis/classroom_v1/classes.rb', line 1582

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>)


1588
1589
1590
# File 'generated/google/apis/classroom_v1/classes.rb', line 1588

def remove_student_ids
  @remove_student_ids
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1595
1596
1597
1598
# File 'generated/google/apis/classroom_v1/classes.rb', line 1595

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