class Kaltura::KalturaResponseProfileHolder
Attributes
id[RW]
Auto generated numeric identifier
system_name[RW]
Unique system name
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaBaseResponseProfile#from_xml
# File lib/kaltura_types.rb, line 14861 def from_xml(xml_element) super if xml_element.elements['id'] != nil self.id = xml_element.elements['id'].text end if xml_element.elements['systemName'] != nil self.system_name = xml_element.elements['systemName'].text end end
id=(val)
click to toggle source
# File lib/kaltura_types.rb, line 14857 def id=(val) @id = val.to_i end