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.
14782 14783 14784 |
# File 'lib/kaltura_types.rb', line 14782 def calculated_score @calculated_score end |
#feedback ⇒ Object
Returns the value of attribute feedback.
14783 14784 14785 |
# File 'lib/kaltura_types.rb', line 14783 def feedback @feedback end |
#score ⇒ Object
Returns the value of attribute score.
14781 14782 14783 |
# File 'lib/kaltura_types.rb', line 14781 def score @score end |
#version ⇒ Object
Returns the value of attribute version.
14784 14785 14786 |
# File 'lib/kaltura_types.rb', line 14784 def version @version end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
14796 14797 14798 14799 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810 |
# File 'lib/kaltura_types.rb', line 14796 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 |