class Kaltura::KalturaEntryResource
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.
Attributes
entry_id[RW]
ID of the source entry
flavor_params_id[RW]
ID of the source flavor params, set to null to use the source flavor
Public Instance Methods
flavor_params_id=(val)
click to toggle source
# File lib/kaltura_types.rb, line 17181 def flavor_params_id=(val) @flavor_params_id = val.to_i end
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaContentResource#from_xml
# File lib/kaltura_types.rb, line 17185 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