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.
14742 14743 14744 |
# File 'lib/kaltura_types.rb', line 14742 def calculated_score @calculated_score end |
#feedback ⇒ Object
Returns the value of attribute feedback.
14743 14744 14745 |
# File 'lib/kaltura_types.rb', line 14743 def feedback @feedback end |
#score ⇒ Object
Returns the value of attribute score.
14741 14742 14743 |
# File 'lib/kaltura_types.rb', line 14741 def score @score end |
#version ⇒ Object
Returns the value of attribute version.
14744 14745 14746 |
# File 'lib/kaltura_types.rb', line 14744 def version @version end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
14756 14757 14758 14759 14760 14761 14762 14763 14764 14765 14766 14767 14768 14769 14770 |
# File 'lib/kaltura_types.rb', line 14756 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 |