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.



11353
11354
11355
# File 'lib/kaltura_types.rb', line 11353

def appear_in_list
  @appear_in_list
end

#contribution_policyObject

Returns the value of attribute contribution_policy.



11359
11360
11361
# File 'lib/kaltura_types.rb', line 11359

def contribution_policy
  @contribution_policy
end

#default_permission_levelObject

Returns the value of attribute default_permission_level.



11357
11358
11359
# File 'lib/kaltura_types.rb', line 11357

def default_permission_level
  @default_permission_level
end

#descriptionObject

Returns the value of attribute description.



11351
11352
11353
# File 'lib/kaltura_types.rb', line 11351

def description
  @description
end

#inheritance_typeObject

Returns the value of attribute inheritance_type.



11355
11356
11357
# File 'lib/kaltura_types.rb', line 11355

def inheritance_type
  @inheritance_type
end

#moderationObject

Returns the value of attribute moderation.



11361
11362
11363
# File 'lib/kaltura_types.rb', line 11361

def moderation
  @moderation
end

#nameObject

Returns the value of attribute name.



11349
11350
11351
# File 'lib/kaltura_types.rb', line 11349

def name
  @name
end

#ownerObject

Returns the value of attribute owner.



11358
11359
11360
# File 'lib/kaltura_types.rb', line 11358

def owner
  @owner
end

#partner_sort_valueObject

Returns the value of attribute partner_sort_value.



11360
11361
11362
# File 'lib/kaltura_types.rb', line 11360

def partner_sort_value
  @partner_sort_value
end

#privacyObject

Returns the value of attribute privacy.



11354
11355
11356
# File 'lib/kaltura_types.rb', line 11354

def privacy
  @privacy
end

#reference_idObject

Returns the value of attribute reference_id.



11350
11351
11352
# File 'lib/kaltura_types.rb', line 11350

def reference_id
  @reference_id
end

#relative_pathObject

Returns the value of attribute relative_path.



11348
11349
11350
# File 'lib/kaltura_types.rb', line 11348

def relative_path
  @relative_path
end

#tagsObject

Returns the value of attribute tags.



11352
11353
11354
# File 'lib/kaltura_types.rb', line 11352

def tags
  @tags
end

#user_join_policyObject

Returns the value of attribute user_join_policy.



11356
11357
11358
# File 'lib/kaltura_types.rb', line 11356

def user_join_policy
  @user_join_policy
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11388
11389
11390
11391
11392
11393
11394
11395
11396
11397
11398
11399
11400
11401
11402
11403
11404
11405
11406
11407
11408
11409
11410
11411
11412
11413
11414
11415
11416
11417
11418
11419
11420
11421
11422
11423
11424
11425
11426
11427
11428
11429
11430
11431
11432
# File 'lib/kaltura_types.rb', line 11388

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