Class: Google::Apis::ClassroomV1::ModifyCourseWorkAssigneesRequest
- Inherits:
-
Object
- Object
- Google::Apis::ClassroomV1::ModifyCourseWorkAssigneesRequest
- 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
Request to modify assignee mode and options of a coursework.
Instance Attribute Summary collapse
-
#assignee_mode ⇒ String
Mode of the coursework describing whether it will be assigned to all students or specified individual students.
-
#modify_individual_students_options ⇒ Google::Apis::ClassroomV1::ModifyIndividualStudentsOptions
Contains fields to add or remove students from a course work or announcement where the
assigneeModeis set toINDIVIDUAL_STUDENTS.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ModifyCourseWorkAssigneesRequest
constructor
A new instance of ModifyCourseWorkAssigneesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ModifyCourseWorkAssigneesRequest
Returns a new instance of ModifyCourseWorkAssigneesRequest.
1713 1714 1715 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 1713 def initialize(**args) update!(**args) end |
Instance Attribute Details
#assignee_mode ⇒ String
Mode of the coursework describing whether it will be assigned to all students
or specified individual students.
Corresponds to the JSON property assigneeMode
1705 1706 1707 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 1705 def assignee_mode @assignee_mode end |
#modify_individual_students_options ⇒ 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.
Corresponds to the JSON property modifyIndividualStudentsOptions
1711 1712 1713 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 1711 def @modify_individual_students_options end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1718 1719 1720 1721 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 1718 def update!(**args) @assignee_mode = args[:assignee_mode] if args.key?(:assignee_mode) @modify_individual_students_options = args[:modify_individual_students_options] if args.key?(:modify_individual_students_options) end |