Class: Kaltura::KalturaBulkUploadResultJob
- Inherits:
-
KalturaBulkUploadResult
- Object
- KalturaObjectBase
- KalturaBulkUploadResult
- Kaltura::KalturaBulkUploadResultJob
- Defined in:
- lib/kaltura_plugins/kaltura_bulk_upload_filter_client_plugin.rb
Instance Attribute Summary collapse
-
#job_object_id ⇒ Object
ID of object being processed by the job.
Attributes inherited from KalturaBulkUploadResult
#action, #bulk_upload_job_id, #bulk_upload_result_object_type, #error_code, #error_description, #error_type, #id, #line_index, #object_error_description, #object_id, #object_status, #partner_data, #partner_id, #plugins_data, #row_data, #status
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#job_object_id ⇒ Object
ID of object being processed by the job
51 52 53 |
# File 'lib/kaltura_plugins/kaltura_bulk_upload_filter_client_plugin.rb', line 51 def job_object_id @job_object_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
57 58 59 60 61 62 |
# File 'lib/kaltura_plugins/kaltura_bulk_upload_filter_client_plugin.rb', line 57 def from_xml(xml_element) super if xml_element.elements['jobObjectId'] != nil self.job_object_id = xml_element.elements['jobObjectId'].text end end |