Class: Kaltura::KalturaQuizUserEntry

Inherits:
KalturaUserEntry show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

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

#camelcase, #to_b, #to_params

Instance Attribute Details

#calculated_scoreObject

Returns the value of attribute calculated_score.



14262
14263
14264
# File 'lib/kaltura_types.rb', line 14262

def calculated_score
  @calculated_score
end

#feedbackObject

Returns the value of attribute feedback.



14263
14264
14265
# File 'lib/kaltura_types.rb', line 14263

def feedback
  @feedback
end

#scoreObject

Returns the value of attribute score.



14261
14262
14263
# File 'lib/kaltura_types.rb', line 14261

def score
  @score
end

#versionObject

Returns the value of attribute version.



14264
14265
14266
# File 'lib/kaltura_types.rb', line 14264

def version
  @version
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



14276
14277
14278
14279
14280
14281
14282
14283
14284
14285
14286
14287
14288
14289
14290
# File 'lib/kaltura_types.rb', line 14276

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