Class: Google::Apis::ClassroomV1::MultipleChoiceQuestion
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ClassroomV1::MultipleChoiceQuestion
 
 
- Defined in:
 - generated/google/apis/classroom_v1/classes.rb,
generated/google/apis/classroom_v1/representations.rb,
generated/google/apis/classroom_v1/representations.rb 
Overview
Additional details for multiple-choice questions.
Instance Attribute Summary collapse
- 
  
    
      #choices  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Possible choices.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ MultipleChoiceQuestion 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of MultipleChoiceQuestion.
 - 
  
    
      #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) ⇒ MultipleChoiceQuestion
Returns a new instance of MultipleChoiceQuestion
      1577 1578 1579  | 
    
      # File 'generated/google/apis/classroom_v1/classes.rb', line 1577 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#choices ⇒ Array<String>
Possible choices.
Corresponds to the JSON property choices
      1575 1576 1577  | 
    
      # File 'generated/google/apis/classroom_v1/classes.rb', line 1575 def choices @choices end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1582 1583 1584  | 
    
      # File 'generated/google/apis/classroom_v1/classes.rb', line 1582 def update!(**args) @choices = args[:choices] if args.key?(:choices) end  |