class Kaltura::KalturaWidevineRepositorySyncJobData

Attributes

modified_attributes[RW]
monitor_sync_completion[RW]
sync_mode[RW]
wv_asset_ids[RW]

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method
# File lib/kaltura_plugins/kaltura_widevine_client_plugin.rb, line 110
def from_xml(xml_element)
        super
        if xml_element.elements['syncMode'] != nil
                self.sync_mode = xml_element.elements['syncMode'].text
        end
        if xml_element.elements['wvAssetIds'] != nil
                self.wv_asset_ids = xml_element.elements['wvAssetIds'].text
        end
        if xml_element.elements['modifiedAttributes'] != nil
                self.modified_attributes = xml_element.elements['modifiedAttributes'].text
        end
        if xml_element.elements['monitorSyncCompletion'] != nil
                self.monitor_sync_completion = xml_element.elements['monitorSyncCompletion'].text
        end
end
monitor_sync_completion=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_widevine_client_plugin.rb, line 106
def monitor_sync_completion=(val)
        @monitor_sync_completion = val.to_i
end
sync_mode=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_widevine_client_plugin.rb, line 103
def sync_mode=(val)
        @sync_mode = val.to_i
end