Class: Kaltura::KalturaSourceFileSyncDescriptor

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

Instance Attribute Summary collapse

Attributes inherited from KalturaFileSyncDescriptor

#file_encryption_key, #file_sync_local_path, #file_sync_object_sub_type, #file_sync_remote_url

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#actual_file_sync_local_pathObject

The translated path as used by the scheduler



9473
9474
9475
# File 'lib/kaltura_types.rb', line 9473

def actual_file_sync_local_path
  @actual_file_sync_local_path
end

#asset_idObject

Returns the value of attribute asset_id.



9474
9475
9476
# File 'lib/kaltura_types.rb', line 9474

def asset_id
  @asset_id
end

#asset_params_idObject

Returns the value of attribute asset_params_id.



9475
9476
9477
# File 'lib/kaltura_types.rb', line 9475

def asset_params_id
  @asset_params_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



9481
9482
9483
9484
9485
9486
9487
9488
9489
9490
9491
9492
# File 'lib/kaltura_types.rb', line 9481

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