Class: Kaltura::KalturaBusinessProcessNotificationDispatchJobData
- Inherits:
-
KalturaEventNotificationDispatchJobData
- Object
- KalturaObjectBase
- KalturaJobData
- KalturaEventNotificationDispatchJobData
- Kaltura::KalturaBusinessProcessNotificationDispatchJobData
- Defined in:
- lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb
Instance Attribute Summary collapse
-
#case_id ⇒ Object
Returns the value of attribute case_id.
-
#server ⇒ Object
Returns the value of attribute server.
Attributes inherited from KalturaEventNotificationDispatchJobData
#content_parameters, #template_id
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#case_id ⇒ Object
Returns the value of attribute case_id.
342 343 344 |
# File 'lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb', line 342 def case_id @case_id end |
#server ⇒ Object
Returns the value of attribute server.
341 342 343 |
# File 'lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb', line 341 def server @server end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
345 346 347 348 349 350 351 352 353 |
# File 'lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb', line 345 def from_xml(xml_element) super if xml_element.elements['server'] != nil self.server = KalturaClientBase.object_from_xml(xml_element.elements['server'], 'KalturaBusinessProcessServer') end if xml_element.elements['caseId'] != nil self.case_id = xml_element.elements['caseId'].text end end |