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



14189
14190
14191
# File 'lib/kaltura_types.rb', line 14189

def id
  @id
end

#system_nameObject

Unique system name



14191
14192
14193
# File 'lib/kaltura_types.rb', line 14191

def system_name
  @system_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



14197
14198
14199
14200
14201
14202
14203
14204
14205
# File 'lib/kaltura_types.rb', line 14197

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