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



17281
17282
17283
# File 'lib/kaltura_types.rb', line 17281

def file_sync_object_type
  @file_sync_object_type
end

#object_idObject

The object id of the file sync object



17285
17286
17287
# File 'lib/kaltura_types.rb', line 17285

def object_id
  @object_id
end

#object_sub_typeObject

The object sub-type of the file sync object



17283
17284
17285
# File 'lib/kaltura_types.rb', line 17283

def object_sub_type
  @object_sub_type
end

#versionObject

The version of the file sync object



17287
17288
17289
# File 'lib/kaltura_types.rb', line 17287

def version
  @version
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



17296
17297
17298
17299
17300
17301
17302
17303
17304
17305
17306
17307
17308
17309
17310
# File 'lib/kaltura_types.rb', line 17296

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