Class: Kaltura::KalturaDistributionValidationError

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#actionObject

Returns the value of attribute action.



492
493
494
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 492

def action
  @action
end

#descriptionObject

Returns the value of attribute description.



494
495
496
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 494

def description
  @description
end

#error_typeObject

Returns the value of attribute error_type.



493
494
495
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 493

def error_type
  @error_type
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



503
504
505
506
507
508
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 503

def from_xml(xml_element)
  super
  self.action = xml_element.elements['action'].text
  self.error_type = xml_element.elements['errorType'].text
  self.description = xml_element.elements['description'].text
end