Class: Kaltura::KalturaEntryResource
- Inherits:
-
KalturaContentResource
- Object
- KalturaObjectBase
- KalturaResource
- KalturaContentResource
- Kaltura::KalturaEntryResource
- Defined in:
- lib/kaltura_types.rb
Overview
Used to ingest media that is already ingested to Kaltura system as a different entry 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 entry.
Instance Attribute Summary collapse
-
#entry_id ⇒ Object
ID of the source entry.
-
#flavor_params_id ⇒ Object
ID of the source flavor params, set to null to use the source flavor.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#entry_id ⇒ Object
ID of the source entry
17467 17468 17469 |
# File 'lib/kaltura_types.rb', line 17467 def entry_id @entry_id end |
#flavor_params_id ⇒ Object
ID of the source flavor params, set to null to use the source flavor
17469 17470 17471 |
# File 'lib/kaltura_types.rb', line 17469 def flavor_params_id @flavor_params_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
17475 17476 17477 17478 17479 17480 17481 17482 17483 |
# File 'lib/kaltura_types.rb', line 17475 def from_xml(xml_element) super if xml_element.elements['entryId'] != nil self.entry_id = xml_element.elements['entryId'].text end if xml_element.elements['flavorParamsId'] != nil self.flavor_params_id = xml_element.elements['flavorParamsId'].text end end |