Class: Kaltura::KalturaBulkUploadResultCategory

Inherits:
KalturaBulkUploadResult show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

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

#camelcase, #to_b, #to_params

Instance Attribute Details

#appear_in_listObject

Returns the value of attribute appear_in_list.



10943
10944
10945
# File 'lib/kaltura_types.rb', line 10943

def appear_in_list
  @appear_in_list
end

#contribution_policyObject

Returns the value of attribute contribution_policy.



10949
10950
10951
# File 'lib/kaltura_types.rb', line 10949

def contribution_policy
  @contribution_policy
end

#default_permission_levelObject

Returns the value of attribute default_permission_level.



10947
10948
10949
# File 'lib/kaltura_types.rb', line 10947

def default_permission_level
  @default_permission_level
end

#descriptionObject

Returns the value of attribute description.



10941
10942
10943
# File 'lib/kaltura_types.rb', line 10941

def description
  @description
end

#inheritance_typeObject

Returns the value of attribute inheritance_type.



10945
10946
10947
# File 'lib/kaltura_types.rb', line 10945

def inheritance_type
  @inheritance_type
end

#moderationObject

Returns the value of attribute moderation.



10951
10952
10953
# File 'lib/kaltura_types.rb', line 10951

def moderation
  @moderation
end

#nameObject

Returns the value of attribute name.



10939
10940
10941
# File 'lib/kaltura_types.rb', line 10939

def name
  @name
end

#ownerObject

Returns the value of attribute owner.



10948
10949
10950
# File 'lib/kaltura_types.rb', line 10948

def owner
  @owner
end

#partner_sort_valueObject

Returns the value of attribute partner_sort_value.



10950
10951
10952
# File 'lib/kaltura_types.rb', line 10950

def partner_sort_value
  @partner_sort_value
end

#privacyObject

Returns the value of attribute privacy.



10944
10945
10946
# File 'lib/kaltura_types.rb', line 10944

def privacy
  @privacy
end

#reference_idObject

Returns the value of attribute reference_id.



10940
10941
10942
# File 'lib/kaltura_types.rb', line 10940

def reference_id
  @reference_id
end

#relative_pathObject

Returns the value of attribute relative_path.



10938
10939
10940
# File 'lib/kaltura_types.rb', line 10938

def relative_path
  @relative_path
end

#tagsObject

Returns the value of attribute tags.



10942
10943
10944
# File 'lib/kaltura_types.rb', line 10942

def tags
  @tags
end

#user_join_policyObject

Returns the value of attribute user_join_policy.



10946
10947
10948
# File 'lib/kaltura_types.rb', line 10946

def user_join_policy
  @user_join_policy
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



10978
10979
10980
10981
10982
10983
10984
10985
10986
10987
10988
10989
10990
10991
10992
10993
10994
10995
10996
10997
10998
10999
11000
11001
11002
11003
11004
11005
11006
11007
11008
11009
11010
11011
11012
11013
11014
11015
11016
11017
11018
11019
11020
11021
11022
# File 'lib/kaltura_types.rb', line 10978

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.tags = 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.default_permission_level = 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