Class: Kaltura::KalturaGenericDistributionJobProviderData
- Inherits:
-
KalturaDistributionJobProviderData
- Object
- KalturaObjectBase
- KalturaDistributionJobProviderData
- Kaltura::KalturaGenericDistributionJobProviderData
- Defined in:
- lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb
Instance Attribute Summary collapse
-
#result_parse_data ⇒ Object
Returns the value of attribute result_parse_data.
-
#result_parser_type ⇒ Object
Returns the value of attribute result_parser_type.
-
#xml ⇒ Object
Returns the value of attribute xml.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#result_parse_data ⇒ Object
Returns the value of attribute result_parse_data.
1438 1439 1440 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1438 def result_parse_data @result_parse_data end |
#result_parser_type ⇒ Object
Returns the value of attribute result_parser_type.
1439 1440 1441 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1439 def result_parser_type @result_parser_type end |
#xml ⇒ Object
Returns the value of attribute xml.
1437 1438 1439 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1437 def xml @xml end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1445 def from_xml(xml_element) super if xml_element.elements['xml'] != nil self.xml = xml_element.elements['xml'].text end if xml_element.elements['resultParseData'] != nil self.result_parse_data = xml_element.elements['resultParseData'].text end if xml_element.elements['resultParserType'] != nil self.result_parser_type = xml_element.elements['resultParserType'].text end end |