Class: Kaltura::KalturaBulkUploadResultCategoryEntry
- Inherits:
-
KalturaBulkUploadResult
- Object
- KalturaObjectBase
- KalturaBulkUploadResult
- Kaltura::KalturaBulkUploadResultCategoryEntry
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#category_id ⇒ Object
Returns the value of attribute category_id.
-
#entry_id ⇒ Object
Returns the value of attribute entry_id.
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
#category_id ⇒ Object
Returns the value of attribute category_id.
11666 11667 11668 |
# File 'lib/kaltura_types.rb', line 11666 def category_id @category_id end |
#entry_id ⇒ Object
Returns the value of attribute entry_id.
11667 11668 11669 |
# File 'lib/kaltura_types.rb', line 11667 def entry_id @entry_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
11673 11674 11675 11676 11677 11678 11679 11680 11681 |
# File 'lib/kaltura_types.rb', line 11673 def from_xml(xml_element) super if xml_element.elements['categoryId'] != nil self.category_id = xml_element.elements['categoryId'].text end if xml_element.elements['entryId'] != nil self.entry_id = xml_element.elements['entryId'].text end end |