class Kaltura::KalturaFileSyncResource

Used to ingest media that is already ingested to Kaltura system as a different file 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.

Attributes

file_sync_object_type[RW]

The object type of the file sync object

object_id[RW]

The object id of the file sync object

object_sub_type[RW]

The object sub-type of the file sync object

version[RW]

The version of the file sync object

Public Instance Methods

file_sync_object_type=(val) click to toggle source
# File lib/kaltura_types.rb, line 17392
def file_sync_object_type=(val)
        @file_sync_object_type = val.to_i
end
from_xml(xml_element) click to toggle source
# File lib/kaltura_types.rb, line 17399
def from_xml(xml_element)
        super
        if xml_element.elements['fileSyncObjectType'] != nil
                self.file_sync_object_type = xml_element.elements['fileSyncObjectType'].text
        end
        if xml_element.elements['objectSubType'] != nil
                self.object_sub_type = xml_element.elements['objectSubType'].text
        end
        if xml_element.elements['objectId'] != nil
                self.object_id = xml_element.elements['objectId'].text
        end
        if xml_element.elements['version'] != nil
                self.version = xml_element.elements['version'].text
        end
end
object_sub_type=(val) click to toggle source
# File lib/kaltura_types.rb, line 17395
def object_sub_type=(val)
        @object_sub_type = val.to_i
end