class Kaltura::KalturaBusinessProcessStartNotificationTemplate

Attributes

abort_on_deletion[RW]

Abort the process automatically if the triggering object deleted

Public Instance Methods

abort_on_deletion=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb, line 403
def abort_on_deletion=(val)
        @abort_on_deletion = to_b(val)
end
from_xml(xml_element) click to toggle source
# File lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb, line 407
def from_xml(xml_element)
        super
        if xml_element.elements['abortOnDeletion'] != nil
                self.abort_on_deletion = xml_element.elements['abortOnDeletion'].text
        end
end