Class: Kaltura::KalturaBulkUploadResultCategory
- Inherits:
-
KalturaBulkUploadResult
- Object
- KalturaObjectBase
- KalturaBulkUploadResult
- Kaltura::KalturaBulkUploadResultCategory
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#appear_in_list ⇒ Object
Returns the value of attribute appear_in_list.
-
#contribution_policy ⇒ Object
Returns the value of attribute contribution_policy.
-
#default_permission_level ⇒ Object
Returns the value of attribute default_permission_level.
-
#description ⇒ Object
Returns the value of attribute description.
-
#inheritance_type ⇒ Object
Returns the value of attribute inheritance_type.
-
#moderation ⇒ Object
Returns the value of attribute moderation.
-
#name ⇒ Object
Returns the value of attribute name.
-
#owner ⇒ Object
Returns the value of attribute owner.
-
#partner_sort_value ⇒ Object
Returns the value of attribute partner_sort_value.
-
#privacy ⇒ Object
Returns the value of attribute privacy.
-
#reference_id ⇒ Object
Returns the value of attribute reference_id.
-
#relative_path ⇒ Object
Returns the value of attribute relative_path.
-
#tags ⇒ Object
Returns the value of attribute tags.
-
#user_join_policy ⇒ Object
Returns the value of attribute user_join_policy.
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
#appear_in_list ⇒ Object
Returns the value of attribute appear_in_list.
11612 11613 11614 |
# File 'lib/kaltura_types.rb', line 11612 def appear_in_list @appear_in_list end |
#contribution_policy ⇒ Object
Returns the value of attribute contribution_policy.
11618 11619 11620 |
# File 'lib/kaltura_types.rb', line 11618 def contribution_policy @contribution_policy end |
#default_permission_level ⇒ Object
Returns the value of attribute default_permission_level.
11616 11617 11618 |
# File 'lib/kaltura_types.rb', line 11616 def @default_permission_level end |
#description ⇒ Object
Returns the value of attribute description.
11610 11611 11612 |
# File 'lib/kaltura_types.rb', line 11610 def description @description end |
#inheritance_type ⇒ Object
Returns the value of attribute inheritance_type.
11614 11615 11616 |
# File 'lib/kaltura_types.rb', line 11614 def inheritance_type @inheritance_type end |
#moderation ⇒ Object
Returns the value of attribute moderation.
11620 11621 11622 |
# File 'lib/kaltura_types.rb', line 11620 def moderation @moderation end |
#name ⇒ Object
Returns the value of attribute name.
11608 11609 11610 |
# File 'lib/kaltura_types.rb', line 11608 def name @name end |
#owner ⇒ Object
Returns the value of attribute owner.
11617 11618 11619 |
# File 'lib/kaltura_types.rb', line 11617 def owner @owner end |
#partner_sort_value ⇒ Object
Returns the value of attribute partner_sort_value.
11619 11620 11621 |
# File 'lib/kaltura_types.rb', line 11619 def partner_sort_value @partner_sort_value end |
#privacy ⇒ Object
Returns the value of attribute privacy.
11613 11614 11615 |
# File 'lib/kaltura_types.rb', line 11613 def privacy @privacy end |
#reference_id ⇒ Object
Returns the value of attribute reference_id.
11609 11610 11611 |
# File 'lib/kaltura_types.rb', line 11609 def reference_id @reference_id end |
#relative_path ⇒ Object
Returns the value of attribute relative_path.
11607 11608 11609 |
# File 'lib/kaltura_types.rb', line 11607 def relative_path @relative_path end |
#tags ⇒ Object
Returns the value of attribute tags.
11611 11612 11613 |
# File 'lib/kaltura_types.rb', line 11611 def @tags end |
#user_join_policy ⇒ Object
Returns the value of attribute user_join_policy.
11615 11616 11617 |
# File 'lib/kaltura_types.rb', line 11615 def user_join_policy @user_join_policy end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
11647 11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 |
# File 'lib/kaltura_types.rb', line 11647 def from_xml(xml_element) super if xml_element.elements['relativePath'] != nil self.relative_path = xml_element.elements['relativePath'].text end if xml_element.elements['name'] != nil self.name = xml_element.elements['name'].text end if xml_element.elements['referenceId'] != nil self.reference_id = xml_element.elements['referenceId'].text end if xml_element.elements['description'] != nil self.description = xml_element.elements['description'].text end if xml_element.elements['tags'] != nil self. = xml_element.elements['tags'].text end if xml_element.elements['appearInList'] != nil self.appear_in_list = xml_element.elements['appearInList'].text end if xml_element.elements['privacy'] != nil self.privacy = xml_element.elements['privacy'].text end if xml_element.elements['inheritanceType'] != nil self.inheritance_type = xml_element.elements['inheritanceType'].text end if xml_element.elements['userJoinPolicy'] != nil self.user_join_policy = xml_element.elements['userJoinPolicy'].text end if xml_element.elements['defaultPermissionLevel'] != nil self. = xml_element.elements['defaultPermissionLevel'].text end if xml_element.elements['owner'] != nil self.owner = xml_element.elements['owner'].text end if xml_element.elements['contributionPolicy'] != nil self.contribution_policy = xml_element.elements['contributionPolicy'].text end if xml_element.elements['partnerSortValue'] != nil self.partner_sort_value = xml_element.elements['partnerSortValue'].text end if xml_element.elements['moderation'] != nil self.moderation = xml_element.elements['moderation'].text end end |