class Kaltura::KalturaDistributionValidationError

Attributes

action[RW]
description[RW]
error_type[RW]

Public Instance Methods

action=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb, line 600
def action=(val)
        @action = val.to_i
end
error_type=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb, line 603
def error_type=(val)
        @error_type = val.to_i
end
from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb, line 607
def from_xml(xml_element)
        super
        if xml_element.elements['action'] != nil
                self.action = xml_element.elements['action'].text
        end
        if xml_element.elements['errorType'] != nil
                self.error_type = xml_element.elements['errorType'].text
        end
        if xml_element.elements['description'] != nil
                self.description = xml_element.elements['description'].text
        end
end