Class: Google::Apis::ClassroomV1::ModifyAnnouncementAssigneesRequest
- Inherits:
-
Object
- Object
- Google::Apis::ClassroomV1::ModifyAnnouncementAssigneesRequest
- Defined in:
- generated/google/apis/classroom_v1/classes.rb,
generated/google/apis/classroom_v1/representations.rb,
generated/google/apis/classroom_v1/representations.rb
Overview
Request to modify assignee mode and options of an announcement.
Instance Attribute Summary collapse
-
#assignee_mode ⇒ String
Mode of the announcement describing whether it will be accessible by 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
assigneeMode
is set toINDIVIDUAL_STUDENTS
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ModifyAnnouncementAssigneesRequest
constructor
A new instance of ModifyAnnouncementAssigneesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ModifyAnnouncementAssigneesRequest
Returns a new instance of ModifyAnnouncementAssigneesRequest
1481 1482 1483 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1481 def initialize(**args) update!(**args) end |
Instance Attribute Details
#assignee_mode ⇒ String
Mode of the announcement describing whether it will be accessible by all
students or specified individual students.
Corresponds to the JSON property assigneeMode
1473 1474 1475 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1473 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
1479 1480 1481 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1479 def @modify_individual_students_options end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1486 1487 1488 1489 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1486 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 |