Class: Kaltura::KalturaQuizUserEntry
- Inherits:
-
KalturaUserEntry
- Object
- KalturaObjectBase
- KalturaUserEntry
- Kaltura::KalturaQuizUserEntry
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#calculated_score ⇒ Object
Returns the value of attribute calculated_score.
-
#feedback ⇒ Object
Returns the value of attribute feedback.
-
#score ⇒ Object
Returns the value of attribute score.
-
#version ⇒ Object
Returns the value of attribute version.
Attributes inherited from KalturaUserEntry
#created_at, #entry_id, #extended_status, #id, #partner_id, #status, #type, #updated_at, #user_id
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#calculated_score ⇒ Object
Returns the value of attribute calculated_score.
14546 14547 14548 |
# File 'lib/kaltura_types.rb', line 14546 def calculated_score @calculated_score end |
#feedback ⇒ Object
Returns the value of attribute feedback.
14547 14548 14549 |
# File 'lib/kaltura_types.rb', line 14547 def feedback @feedback end |
#score ⇒ Object
Returns the value of attribute score.
14545 14546 14547 |
# File 'lib/kaltura_types.rb', line 14545 def score @score end |
#version ⇒ Object
Returns the value of attribute version.
14548 14549 14550 |
# File 'lib/kaltura_types.rb', line 14548 def version @version end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
14560 14561 14562 14563 14564 14565 14566 14567 14568 14569 14570 14571 14572 14573 14574 |
# File 'lib/kaltura_types.rb', line 14560 def from_xml(xml_element) super if xml_element.elements['score'] != nil self.score = xml_element.elements['score'].text end if xml_element.elements['calculatedScore'] != nil self.calculated_score = xml_element.elements['calculatedScore'].text end if xml_element.elements['feedback'] != nil self.feedback = xml_element.elements['feedback'].text end if xml_element.elements['version'] != nil self.version = xml_element.elements['version'].text end end |