Class: Google::Apis::ClassroomV1::IndividualStudentsOptions
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ClassroomV1::IndividualStudentsOptions
 
- Defined in:
- generated/google/apis/classroom_v1/classes.rb,
 generated/google/apis/classroom_v1/representations.rb,
 generated/google/apis/classroom_v1/representations.rb
Overview
Assignee details about a coursework/announcement.
This field is set if and only if assigneeMode is INDIVIDUAL_STUDENTS.
Instance Attribute Summary collapse
- 
  
    
      #student_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifiers for the students that have access to the coursework/announcement. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ IndividualStudentsOptions 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of IndividualStudentsOptions. 
- 
  
    
      #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) ⇒ IndividualStudentsOptions
Returns a new instance of IndividualStudentsOptions
| 1050 1051 1052 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1050 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#student_ids ⇒ Array<String>
Identifiers for the students that have access to the
coursework/announcement.
Corresponds to the JSON property studentIds
| 1048 1049 1050 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1048 def student_ids @student_ids end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1055 1056 1057 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1055 def update!(**args) @student_ids = args[:student_ids] if args.key?(:student_ids) end |