Class: Kaltura::KalturaBulkUploadResultCategoryUser
- Inherits:
-
KalturaBulkUploadResult
- Object
- KalturaObjectBase
- KalturaBulkUploadResult
- Kaltura::KalturaBulkUploadResultCategoryUser
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#category_id ⇒ Object
Returns the value of attribute category_id.
-
#category_reference_id ⇒ Object
Returns the value of attribute category_reference_id.
-
#permission_level ⇒ Object
Returns the value of attribute permission_level.
-
#required_object_status ⇒ Object
Returns the value of attribute required_object_status.
-
#update_method ⇒ Object
Returns the value of attribute update_method.
-
#user_id ⇒ Object
Returns the value of attribute user_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.
11716 11717 11718 |
# File 'lib/kaltura_types.rb', line 11716 def category_id @category_id end |
#category_reference_id ⇒ Object
Returns the value of attribute category_reference_id.
11717 11718 11719 |
# File 'lib/kaltura_types.rb', line 11717 def category_reference_id @category_reference_id end |
#permission_level ⇒ Object
Returns the value of attribute permission_level.
11719 11720 11721 |
# File 'lib/kaltura_types.rb', line 11719 def @permission_level end |
#required_object_status ⇒ Object
Returns the value of attribute required_object_status.
11721 11722 11723 |
# File 'lib/kaltura_types.rb', line 11721 def required_object_status @required_object_status end |
#update_method ⇒ Object
Returns the value of attribute update_method.
11720 11721 11722 |
# File 'lib/kaltura_types.rb', line 11720 def update_method @update_method end |
#user_id ⇒ Object
Returns the value of attribute user_id.
11718 11719 11720 |
# File 'lib/kaltura_types.rb', line 11718 def user_id @user_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 |
# File 'lib/kaltura_types.rb', line 11736 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['categoryReferenceId'] != nil self.category_reference_id = xml_element.elements['categoryReferenceId'].text end if xml_element.elements['userId'] != nil self.user_id = xml_element.elements['userId'].text end if xml_element.elements['permissionLevel'] != nil self. = xml_element.elements['permissionLevel'].text end if xml_element.elements['updateMethod'] != nil self.update_method = xml_element.elements['updateMethod'].text end if xml_element.elements['requiredObjectStatus'] != nil self.required_object_status = xml_element.elements['requiredObjectStatus'].text end end |