Class: Kaltura::KalturaSourceFileSyncDescriptor
- Inherits:
-
KalturaFileSyncDescriptor
- Object
- KalturaObjectBase
- KalturaFileSyncDescriptor
- Kaltura::KalturaSourceFileSyncDescriptor
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#actual_file_sync_local_path ⇒ Object
The translated path as used by the scheduler.
-
#asset_id ⇒ Object
Returns the value of attribute asset_id.
-
#asset_params_id ⇒ Object
Returns the value of attribute asset_params_id.
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
Instance Attribute Details
#actual_file_sync_local_path ⇒ Object
The translated path as used by the scheduler
9406 9407 9408 |
# File 'lib/kaltura_types.rb', line 9406 def actual_file_sync_local_path @actual_file_sync_local_path end |
#asset_id ⇒ Object
Returns the value of attribute asset_id.
9407 9408 9409 |
# File 'lib/kaltura_types.rb', line 9407 def asset_id @asset_id end |
#asset_params_id ⇒ Object
Returns the value of attribute asset_params_id.
9408 9409 9410 |
# File 'lib/kaltura_types.rb', line 9408 def asset_params_id @asset_params_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 |
# File 'lib/kaltura_types.rb', line 9414 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 |