Class: Kaltura::KalturaBulkUploadResult
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaBulkUploadResult
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
KalturaBulkUploadResultCategory, KalturaBulkUploadResultCategoryEntry, KalturaBulkUploadResultCategoryUser, KalturaBulkUploadResultEntry, KalturaBulkUploadResultJob, KalturaBulkUploadResultScheduleEvent, KalturaBulkUploadResultScheduleResource, KalturaBulkUploadResultUser, KalturaBulkUploadResultUserEntry, KalturaBulkUploadResultVendorCatalogItem
Instance Attribute Summary collapse
-
#action ⇒ Object
Returns the value of attribute action.
-
#bulk_upload_job_id ⇒ Object
The id of the parent job.
-
#bulk_upload_result_object_type ⇒ Object
Returns the value of attribute bulk_upload_result_object_type.
-
#error_code ⇒ Object
Returns the value of attribute error_code.
-
#error_description ⇒ Object
Returns the value of attribute error_description.
-
#error_type ⇒ Object
Returns the value of attribute error_type.
-
#id ⇒ Object
The id of the result.
-
#line_index ⇒ Object
The index of the line in the CSV.
-
#object_error_description ⇒ Object
Returns the value of attribute object_error_description.
-
#object_id ⇒ Object
Returns the value of attribute object_id.
-
#object_status ⇒ Object
Returns the value of attribute object_status.
-
#partner_data ⇒ Object
Returns the value of attribute partner_data.
-
#partner_id ⇒ Object
Returns the value of attribute partner_id.
-
#plugins_data ⇒ Object
Returns the value of attribute plugins_data.
-
#row_data ⇒ Object
The data as recieved in the csv.
-
#status ⇒ Object
Returns the value of attribute status.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#action ⇒ Object
Returns the value of attribute action.
2440 2441 2442 |
# File 'lib/kaltura_types.rb', line 2440 def action @action end |
#bulk_upload_job_id ⇒ Object
The id of the parent job
2435 2436 2437 |
# File 'lib/kaltura_types.rb', line 2435 def bulk_upload_job_id @bulk_upload_job_id end |
#bulk_upload_result_object_type ⇒ Object
Returns the value of attribute bulk_upload_result_object_type.
2443 2444 2445 |
# File 'lib/kaltura_types.rb', line 2443 def bulk_upload_result_object_type @bulk_upload_result_object_type end |
#error_code ⇒ Object
Returns the value of attribute error_code.
2450 2451 2452 |
# File 'lib/kaltura_types.rb', line 2450 def error_code @error_code end |
#error_description ⇒ Object
Returns the value of attribute error_description.
2449 2450 2451 |
# File 'lib/kaltura_types.rb', line 2449 def error_description @error_description end |
#error_type ⇒ Object
Returns the value of attribute error_type.
2451 2452 2453 |
# File 'lib/kaltura_types.rb', line 2451 def error_type @error_type end |
#id ⇒ Object
The id of the result
2433 2434 2435 |
# File 'lib/kaltura_types.rb', line 2433 def id @id end |
#line_index ⇒ Object
The index of the line in the CSV
2437 2438 2439 |
# File 'lib/kaltura_types.rb', line 2437 def line_index @line_index end |
#object_error_description ⇒ Object
Returns the value of attribute object_error_description.
2447 2448 2449 |
# File 'lib/kaltura_types.rb', line 2447 def object_error_description @object_error_description end |
#object_id ⇒ Object
Returns the value of attribute object_id.
2441 2442 2443 |
# File 'lib/kaltura_types.rb', line 2441 def object_id @object_id end |
#object_status ⇒ Object
Returns the value of attribute object_status.
2442 2443 2444 |
# File 'lib/kaltura_types.rb', line 2442 def object_status @object_status end |
#partner_data ⇒ Object
Returns the value of attribute partner_data.
2446 2447 2448 |
# File 'lib/kaltura_types.rb', line 2446 def partner_data @partner_data end |
#partner_id ⇒ Object
Returns the value of attribute partner_id.
2438 2439 2440 |
# File 'lib/kaltura_types.rb', line 2438 def partner_id @partner_id end |
#plugins_data ⇒ Object
Returns the value of attribute plugins_data.
2448 2449 2450 |
# File 'lib/kaltura_types.rb', line 2448 def plugins_data @plugins_data end |
#row_data ⇒ Object
The data as recieved in the csv
2445 2446 2447 |
# File 'lib/kaltura_types.rb', line 2445 def row_data @row_data end |
#status ⇒ Object
Returns the value of attribute status.
2439 2440 2441 |
# File 'lib/kaltura_types.rb', line 2439 def status @status end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 |
# File 'lib/kaltura_types.rb', line 2472 def from_xml(xml_element) super if xml_element.elements['id'] != nil self.id = xml_element.elements['id'].text end if xml_element.elements['bulkUploadJobId'] != nil self.bulk_upload_job_id = xml_element.elements['bulkUploadJobId'].text end if xml_element.elements['lineIndex'] != nil self.line_index = xml_element.elements['lineIndex'].text end if xml_element.elements['partnerId'] != nil self.partner_id = xml_element.elements['partnerId'].text end if xml_element.elements['status'] != nil self.status = xml_element.elements['status'].text end if xml_element.elements['action'] != nil self.action = xml_element.elements['action'].text end if xml_element.elements['objectId'] != nil self.object_id = xml_element.elements['objectId'].text end if xml_element.elements['objectStatus'] != nil self.object_status = xml_element.elements['objectStatus'].text end if xml_element.elements['bulkUploadResultObjectType'] != nil self.bulk_upload_result_object_type = xml_element.elements['bulkUploadResultObjectType'].text end if xml_element.elements['rowData'] != nil self.row_data = xml_element.elements['rowData'].text end if xml_element.elements['partnerData'] != nil self.partner_data = xml_element.elements['partnerData'].text end if xml_element.elements['objectErrorDescription'] != nil self.object_error_description = xml_element.elements['objectErrorDescription'].text end if xml_element.elements['pluginsData'] != nil self.plugins_data = KalturaClientBase.object_from_xml(xml_element.elements['pluginsData'], 'KalturaBulkUploadPluginData') end if xml_element.elements['errorDescription'] != nil self.error_description = xml_element.elements['errorDescription'].text end if xml_element.elements['errorCode'] != nil self.error_code = xml_element.elements['errorCode'].text end if xml_element.elements['errorType'] != nil self.error_type = xml_element.elements['errorType'].text end end |