class Kaltura::KalturaSourceFileSyncDescriptor
Attributes
actual_file_sync_local_path[RW]
The translated path as used by the scheduler
asset_id[RW]
asset_params_id[RW]
Public Instance Methods
asset_params_id=(val)
click to toggle source
# File lib/kaltura_types.rb, line 9349 def asset_params_id=(val) @asset_params_id = val.to_i end
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaFileSyncDescriptor#from_xml
# File lib/kaltura_types.rb, line 9353 def from_xml(xml_element) super if xml_element.elements['actualFileSyncLocalPath'] != nil self.actual_file_sync_local_path = xml_element.elements['actualFileSyncLocalPath'].text end if xml_element.elements['assetId'] != nil self.asset_id = xml_element.elements['assetId'].text end if xml_element.elements['assetParamsId'] != nil self.asset_params_id = xml_element.elements['assetParamsId'].text end end