Class: Kaltura::KalturaCaptureThumbJobData

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

Instance Attribute Summary collapse

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_src_file_sync_local_pathObject

The translated path as used by the scheduler



7710
7711
7712
# File 'lib/kaltura_types.rb', line 7710

def actual_src_file_sync_local_path
  @actual_src_file_sync_local_path
end

#src_asset_idObject

Returns the value of attribute src_asset_id.



7714
7715
7716
# File 'lib/kaltura_types.rb', line 7714

def src_asset_id
  @src_asset_id
end

#src_asset_typeObject

Returns the value of attribute src_asset_type.



7715
7716
7717
# File 'lib/kaltura_types.rb', line 7715

def src_asset_type
  @src_asset_type
end

#src_file_sync_local_pathObject

Returns the value of attribute src_file_sync_local_path.



7707
7708
7709
# File 'lib/kaltura_types.rb', line 7707

def src_file_sync_local_path
  @src_file_sync_local_path
end

#src_file_sync_remote_urlObject

Returns the value of attribute src_file_sync_remote_url.



7711
7712
7713
# File 'lib/kaltura_types.rb', line 7711

def src_file_sync_remote_url
  @src_file_sync_remote_url
end

#thumb_asset_idObject

Returns the value of attribute thumb_asset_id.



7713
7714
7715
# File 'lib/kaltura_types.rb', line 7713

def thumb_asset_id
  @thumb_asset_id
end

#thumb_params_output_idObject

Returns the value of attribute thumb_params_output_id.



7712
7713
7714
# File 'lib/kaltura_types.rb', line 7712

def thumb_params_output_id
  @thumb_params_output_id
end

#thumb_pathObject

Returns the value of attribute thumb_path.



7716
7717
7718
# File 'lib/kaltura_types.rb', line 7716

def thumb_path
  @thumb_path
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



7722
7723
7724
7725
7726
7727
7728
7729
7730
7731
7732
# File 'lib/kaltura_types.rb', line 7722

def from_xml(xml_element)
	super
	self.src_file_sync_local_path = xml_element.elements['srcFileSyncLocalPath'].text
	self.actual_src_file_sync_local_path = xml_element.elements['actualSrcFileSyncLocalPath'].text
	self.src_file_sync_remote_url = xml_element.elements['srcFileSyncRemoteUrl'].text
	self.thumb_params_output_id = xml_element.elements['thumbParamsOutputId'].text
	self.thumb_asset_id = xml_element.elements['thumbAssetId'].text
	self.src_asset_id = xml_element.elements['srcAssetId'].text
	self.src_asset_type = xml_element.elements['srcAssetType'].text
	self.thumb_path = xml_element.elements['thumbPath'].text
end