Class: Kaltura::KalturaResponseProfileHolder

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

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#idObject

Auto generated numeric identifier



9775
9776
9777
# File 'lib/kaltura_types.rb', line 9775

def id
  @id
end

#system_nameObject

Unique system name



9778
9779
9780
# File 'lib/kaltura_types.rb', line 9778

def system_name
  @system_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



9784
9785
9786
9787
9788
# File 'lib/kaltura_types.rb', line 9784

def from_xml(xml_element)
  super
  self.id = xml_element.elements['id'].text
  self.system_name = xml_element.elements['systemName'].text
end