Class: Kaltura::KalturaFileSyncResource

Inherits:
KalturaContentResource show all
Defined in:
lib/kaltura_types.rb

Overview

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.

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

#file_sync_object_typeObject

The object type of the file sync object



11506
11507
11508
# File 'lib/kaltura_types.rb', line 11506

def file_sync_object_type
  @file_sync_object_type
end

#object_idObject

The object id of the file sync object



11512
11513
11514
# File 'lib/kaltura_types.rb', line 11512

def object_id
  @object_id
end

#object_sub_typeObject

The object sub-type of the file sync object



11509
11510
11511
# File 'lib/kaltura_types.rb', line 11509

def object_sub_type
  @object_sub_type
end

#versionObject

The version of the file sync object



11515
11516
11517
# File 'lib/kaltura_types.rb', line 11515

def version
  @version
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11524
11525
11526
11527
11528
11529
11530
# File 'lib/kaltura_types.rb', line 11524

def from_xml(xml_element)
	super
	self.file_sync_object_type = xml_element.elements['fileSyncObjectType'].text
	self.object_sub_type = xml_element.elements['objectSubType'].text
	self.object_id = xml_element.elements['objectId'].text
	self.version = xml_element.elements['version'].text
end