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.
1417 1418 1419 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1417 def result_parse_data @result_parse_data end |
#result_parser_type ⇒ Object
Returns the value of attribute result_parser_type.
1418 1419 1420 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1418 def result_parser_type @result_parser_type end |
#xml ⇒ Object
Returns the value of attribute xml.
1416 1417 1418 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1416 def xml @xml end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1424 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 |