class Kaltura::KalturaCrossKalturaDistributionJobProviderData

Attributes

distributed_attachment_assets[RW]

Key-value array where the keys are IDs of distributed caption assets in the source account and the values are the matching IDs in the target account

distributed_caption_assets[RW]

Key-value array where the keys are IDs of distributed caption assets in the source account and the values are the matching IDs in the target account

distributed_cue_points[RW]

Key-value array where the keys are IDs of distributed cue points in the source account and the values are the matching IDs in the target account

distributed_file_assets[RW]

Key-value array where the keys are IDs of distributed fileassets in the source account and the values are the matching IDs in the target account

distributed_flavor_assets[RW]

Key-value array where the keys are IDs of distributed flavor assets in the source account and the values are the matching IDs in the target account

distributed_metadata[RW]

Key-value array where the keys are IDs of distributed metadata objects in the source account and the values are the matching IDs in the target account

distributed_thumb_assets[RW]

Key-value array where the keys are IDs of distributed thumb assets in the source account and the values are the matching IDs in the target account

distributed_thumb_cue_points[RW]

Key-value array where the keys are IDs of distributed thumb cue points in the source account and the values are the matching IDs in the target account

distributed_timed_thumb_assets[RW]

Key-value array where the keys are IDs of distributed timed thumb assets in the source account and the values are the matching IDs in the target account

Public Instance Methods

from_xml(xml_element) click to toggle source
# File lib/kaltura_plugins/kaltura_cross_kaltura_distribution_client_plugin.rb, line 73
def from_xml(xml_element)
        super
        if xml_element.elements['distributedFlavorAssets'] != nil
                self.distributed_flavor_assets = xml_element.elements['distributedFlavorAssets'].text
        end
        if xml_element.elements['distributedThumbAssets'] != nil
                self.distributed_thumb_assets = xml_element.elements['distributedThumbAssets'].text
        end
        if xml_element.elements['distributedMetadata'] != nil
                self.distributed_metadata = xml_element.elements['distributedMetadata'].text
        end
        if xml_element.elements['distributedCaptionAssets'] != nil
                self.distributed_caption_assets = xml_element.elements['distributedCaptionAssets'].text
        end
        if xml_element.elements['distributedFileAssets'] != nil
                self.distributed_file_assets = xml_element.elements['distributedFileAssets'].text
        end
        if xml_element.elements['distributedAttachmentAssets'] != nil
                self.distributed_attachment_assets = xml_element.elements['distributedAttachmentAssets'].text
        end
        if xml_element.elements['distributedCuePoints'] != nil
                self.distributed_cue_points = xml_element.elements['distributedCuePoints'].text
        end
        if xml_element.elements['distributedThumbCuePoints'] != nil
                self.distributed_thumb_cue_points = xml_element.elements['distributedThumbCuePoints'].text
        end
        if xml_element.elements['distributedTimedThumbAssets'] != nil
                self.distributed_timed_thumb_assets = xml_element.elements['distributedTimedThumbAssets'].text
        end
end