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



14908
14909
14910
# File 'lib/kaltura_types.rb', line 14908

def id
  @id
end

#system_nameObject

Unique system name



14910
14911
14912
# File 'lib/kaltura_types.rb', line 14910

def system_name
  @system_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



14916
14917
14918
14919
14920
14921
14922
14923
14924
# File 'lib/kaltura_types.rb', line 14916

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