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



14955
14956
14957
# File 'lib/kaltura_types.rb', line 14955

def id
  @id
end

#system_nameObject

Unique system name



14957
14958
14959
# File 'lib/kaltura_types.rb', line 14957

def system_name
  @system_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



14963
14964
14965
14966
14967
14968
14969
14970
14971
# File 'lib/kaltura_types.rb', line 14963

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