class Kaltura::KalturaDistributionDeleteJobData

Attributes

keep_distribution_item[RW]

Flag signifying that the associated distribution item should not be moved to 'removed' status

Public Instance Methods

from_xml(xml_element) click to toggle source
# File lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb, line 1623
def from_xml(xml_element)
        super
        if xml_element.elements['keepDistributionItem'] != nil
                self.keep_distribution_item = xml_element.elements['keepDistributionItem'].text
        end
end
keep_distribution_item=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb, line 1619
def keep_distribution_item=(val)
        @keep_distribution_item = to_b(val)
end