Class: Kaltura::KalturaSystemPartnerPackage

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_plugins/kaltura_system_partner_client_plugin.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

Returns the value of attribute id.



300
301
302
# File 'lib/kaltura_plugins/kaltura_system_partner_client_plugin.rb', line 300

def id
  @id
end

#nameObject

Returns the value of attribute name.



301
302
303
# File 'lib/kaltura_plugins/kaltura_system_partner_client_plugin.rb', line 301

def name
  @name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



307
308
309
310
311
# File 'lib/kaltura_plugins/kaltura_system_partner_client_plugin.rb', line 307

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