class Kaltura::KalturaFileSyncDescriptor
Attributes
file_encryption_key[RW]
file_sync_local_path[RW]
file_sync_object_sub_type[RW]
file_sync_remote_url[RW]
The translated path as used by the scheduler
Public Instance Methods
file_sync_object_sub_type=(val)
click to toggle source
# File lib/kaltura_types.rb, line 4043 def file_sync_object_sub_type=(val) @file_sync_object_sub_type = val.to_i end
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_types.rb, line 4047 def from_xml(xml_element) super if xml_element.elements['fileSyncLocalPath'] != nil self.file_sync_local_path = xml_element.elements['fileSyncLocalPath'].text end if xml_element.elements['fileEncryptionKey'] != nil self.file_encryption_key = xml_element.elements['fileEncryptionKey'].text end if xml_element.elements['fileSyncRemoteUrl'] != nil self.file_sync_remote_url = xml_element.elements['fileSyncRemoteUrl'].text end if xml_element.elements['fileSyncObjectSubType'] != nil self.file_sync_object_sub_type = xml_element.elements['fileSyncObjectSubType'].text end end