Class: Kaltura::KalturaAssetResource
- Inherits:
-
KalturaContentResource
- Object
- KalturaObjectBase
- KalturaResource
- KalturaContentResource
- Kaltura::KalturaAssetResource
- Defined in:
- lib/kaltura_types.rb
Overview
Used to ingest media that is already ingested to Kaltura system as a different flavor asset in the past, the new created flavor asset will be ready immediately using a file sync of link type that will point to the existing file sync of the existing flavor asset.
Instance Attribute Summary collapse
-
#asset_id ⇒ Object
ID of the source asset.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#asset_id ⇒ Object
ID of the source asset
16707 16708 16709 |
# File 'lib/kaltura_types.rb', line 16707 def asset_id @asset_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
16710 16711 16712 16713 16714 16715 |
# File 'lib/kaltura_types.rb', line 16710 def from_xml(xml_element) super if xml_element.elements['assetId'] != nil self.asset_id = xml_element.elements['assetId'].text end end |