Class: Kaltura::KalturaFileSyncResource
- Inherits:
-
KalturaContentResource
- Object
- KalturaObjectBase
- KalturaResource
- KalturaContentResource
- Kaltura::KalturaFileSyncResource
- 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
-
#file_sync_object_type ⇒ Object
The object type of the file sync object.
-
#object_id ⇒ Object
The object id of the file sync object.
-
#object_sub_type ⇒ Object
The object sub-type of the file sync object.
-
#version ⇒ Object
The version of the file sync object.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#file_sync_object_type ⇒ Object
The object type of the file sync object
17633 17634 17635 |
# File 'lib/kaltura_types.rb', line 17633 def file_sync_object_type @file_sync_object_type end |
#object_id ⇒ Object
The object id of the file sync object
17637 17638 17639 |
# File 'lib/kaltura_types.rb', line 17637 def object_id @object_id end |
#object_sub_type ⇒ Object
The object sub-type of the file sync object
17635 17636 17637 |
# File 'lib/kaltura_types.rb', line 17635 def object_sub_type @object_sub_type end |
#version ⇒ Object
The version of the file sync object
17639 17640 17641 |
# File 'lib/kaltura_types.rb', line 17639 def version @version end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 |
# File 'lib/kaltura_types.rb', line 17648 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 |