Class: Kaltura::KalturaAssetParamsResourceContainer

Inherits:
KalturaResource 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

#asset_params_idObject

The asset params to associate with the reaource



593
594
595
# File 'lib/kaltura_types.rb', line 593

def asset_params_id
  @asset_params_id
end

#resourceObject

The content resource to associate with asset params



590
591
592
# File 'lib/kaltura_types.rb', line 590

def resource
  @resource
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



599
600
601
602
603
# File 'lib/kaltura_types.rb', line 599

def from_xml(xml_element)
	super
	self.resource = KalturaClientBase.object_from_xml(xml_element.elements['resource'], 'KalturaContentResource')
	self.asset_params_id = xml_element.elements['assetParamsId'].text
end