class Kaltura::KalturaFacebookDistributionJobProviderData
Attributes
captions_info[RW]
thumb_asset_id[RW]
video_asset_file_path[RW]
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaConfigurableDistributionJobProviderData#from_xml
# File lib/kaltura_plugins/kaltura_facebook_distribution_client_plugin.rb, line 91 def from_xml(xml_element) super if xml_element.elements['videoAssetFilePath'] != nil self.video_asset_file_path = xml_element.elements['videoAssetFilePath'].text end if xml_element.elements['thumbAssetId'] != nil self.thumb_asset_id = xml_element.elements['thumbAssetId'].text end if xml_element.elements['captionsInfo'] != nil self.captions_info = KalturaClientBase.object_from_xml(xml_element.elements['captionsInfo'], 'KalturaFacebookCaptionDistributionInfo') end end