Class: Kaltura::KalturaBusinessProcessCase
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaBusinessProcessCase
- Defined in:
- lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb
Instance Attribute Summary collapse
-
#activity_id ⇒ Object
Returns the value of attribute activity_id.
-
#business_process_id ⇒ Object
Returns the value of attribute business_process_id.
-
#business_process_start_notification_template_id ⇒ Object
Returns the value of attribute business_process_start_notification_template_id.
-
#id ⇒ Object
Returns the value of attribute id.
-
#suspended ⇒ Object
Returns the value of attribute suspended.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#activity_id ⇒ Object
Returns the value of attribute activity_id.
91 92 93 |
# File 'lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb', line 91 def activity_id @activity_id end |
#business_process_id ⇒ Object
Returns the value of attribute business_process_id.
88 89 90 |
# File 'lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb', line 88 def business_process_id @business_process_id end |
#business_process_start_notification_template_id ⇒ Object
Returns the value of attribute business_process_start_notification_template_id.
89 90 91 |
# File 'lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb', line 89 def business_process_start_notification_template_id @business_process_start_notification_template_id end |
#id ⇒ Object
Returns the value of attribute id.
87 88 89 |
# File 'lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb', line 87 def id @id end |
#suspended ⇒ Object
Returns the value of attribute suspended.
90 91 92 |
# File 'lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb', line 90 def suspended @suspended end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
# File 'lib/kaltura_plugins/kaltura_business_process_notification_client_plugin.rb', line 100 def from_xml(xml_element) super if xml_element.elements['id'] != nil self.id = xml_element.elements['id'].text end if xml_element.elements['businessProcessId'] != nil self.business_process_id = xml_element.elements['businessProcessId'].text end if xml_element.elements['businessProcessStartNotificationTemplateId'] != nil self.business_process_start_notification_template_id = xml_element.elements['businessProcessStartNotificationTemplateId'].text end if xml_element.elements['suspended'] != nil self.suspended = xml_element.elements['suspended'].text end if xml_element.elements['activityId'] != nil self.activity_id = xml_element.elements['activityId'].text end end |