Class: Google::Apis::ClassroomV1::ModifyCourseWorkAssigneesRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ClassroomV1::ModifyCourseWorkAssigneesRequest
 
- 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 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. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ModifyCourseWorkAssigneesRequest
Returns a new instance of ModifyCourseWorkAssigneesRequest
| 1501 1502 1503 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1501 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
| 1493 1494 1495 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1493 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
| 1499 1500 1501 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1499 def @modify_individual_students_options end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1506 1507 1508 1509 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1506 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 |