Class: Google::Apis::ClassroomV1::MultipleChoiceSubmission
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ClassroomV1::MultipleChoiceSubmission
 
- Defined in:
- generated/google/apis/classroom_v1/classes.rb,
 generated/google/apis/classroom_v1/representations.rb,
 generated/google/apis/classroom_v1/representations.rb
Overview
Student work for a multiple-choice question.
Instance Attribute Summary collapse
- 
  
    
      #answer  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Student's select choice. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ MultipleChoiceSubmission 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of MultipleChoiceSubmission. 
- 
  
    
      #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) ⇒ MultipleChoiceSubmission
Returns a new instance of MultipleChoiceSubmission
| 1568 1569 1570 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1568 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#answer ⇒ String
Student's select choice.
Corresponds to the JSON property answer
| 1566 1567 1568 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1566 def answer @answer end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1573 1574 1575 | # File 'generated/google/apis/classroom_v1/classes.rb', line 1573 def update!(**args) @answer = args[:answer] if args.key?(:answer) end |