class Kaltura::KalturaUnicornDistributionJobProviderData
Attributes
catalog_guid[RW]
The Catalog GUID the video is in or will be ingested into.
flavor_asset_version[RW]
Flavor asset version.
media_changed[RW]
Indicates that the media content changed and therefore the job should wait for HTTP callback notification to be closed.
notification_base_url[RW]
The schema and host name to the Kaltura
server, e.g. www.kaltura.com
title[RW]
The Title assigned to the video. The Foreign Key will be used if no title is provided.
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaConfigurableDistributionJobProviderData#from_xml
# File lib/kaltura_plugins/kaltura_unicorn_distribution_client_plugin.rb, line 68 def from_xml(xml_element) super if xml_element.elements['catalogGuid'] != nil self.catalog_guid = xml_element.elements['catalogGuid'].text end if xml_element.elements['title'] != nil self.title = xml_element.elements['title'].text end if xml_element.elements['mediaChanged'] != nil self.media_changed = xml_element.elements['mediaChanged'].text end if xml_element.elements['flavorAssetVersion'] != nil self.flavor_asset_version = xml_element.elements['flavorAssetVersion'].text end if xml_element.elements['notificationBaseUrl'] != nil self.notification_base_url = xml_element.elements['notificationBaseUrl'].text end end
media_changed=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_unicorn_distribution_client_plugin.rb, line 64 def media_changed=(val) @media_changed = to_b(val) end