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.



7480
7481
7482
# File 'lib/kaltura_types.rb', line 7480

def appear_in_list
  @appear_in_list
end

#contribution_policyObject

Returns the value of attribute contribution_policy.



7486
7487
7488
# File 'lib/kaltura_types.rb', line 7486

def contribution_policy
  @contribution_policy
end

#default_permission_levelObject

Returns the value of attribute default_permission_level.



7484
7485
7486
# File 'lib/kaltura_types.rb', line 7484

def default_permission_level
  @default_permission_level
end

#descriptionObject

Returns the value of attribute description.



7478
7479
7480
# File 'lib/kaltura_types.rb', line 7478

def description
  @description
end

#inheritance_typeObject

Returns the value of attribute inheritance_type.



7482
7483
7484
# File 'lib/kaltura_types.rb', line 7482

def inheritance_type
  @inheritance_type
end

#moderationObject

Returns the value of attribute moderation.



7488
7489
7490
# File 'lib/kaltura_types.rb', line 7488

def moderation
  @moderation
end

#nameObject

Returns the value of attribute name.



7476
7477
7478
# File 'lib/kaltura_types.rb', line 7476

def name
  @name
end

#ownerObject

Returns the value of attribute owner.



7485
7486
7487
# File 'lib/kaltura_types.rb', line 7485

def owner
  @owner
end

#partner_sort_valueObject

Returns the value of attribute partner_sort_value.



7487
7488
7489
# File 'lib/kaltura_types.rb', line 7487

def partner_sort_value
  @partner_sort_value
end

#privacyObject

Returns the value of attribute privacy.



7481
7482
7483
# File 'lib/kaltura_types.rb', line 7481

def privacy
  @privacy
end

#reference_idObject

Returns the value of attribute reference_id.



7477
7478
7479
# File 'lib/kaltura_types.rb', line 7477

def reference_id
  @reference_id
end

#relative_pathObject

Returns the value of attribute relative_path.



7475
7476
7477
# File 'lib/kaltura_types.rb', line 7475

def relative_path
  @relative_path
end

#tagsObject

Returns the value of attribute tags.



7479
7480
7481
# File 'lib/kaltura_types.rb', line 7479

def tags
  @tags
end

#user_join_policyObject

Returns the value of attribute user_join_policy.



7483
7484
7485
# File 'lib/kaltura_types.rb', line 7483

def user_join_policy
  @user_join_policy
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
# File 'lib/kaltura_types.rb', line 7515

def from_xml(xml_element)
	super
	self.relative_path = xml_element.elements['relativePath'].text
	self.name = xml_element.elements['name'].text
	self.reference_id = xml_element.elements['referenceId'].text
	self.description = xml_element.elements['description'].text
	self.tags = xml_element.elements['tags'].text
	self.appear_in_list = xml_element.elements['appearInList'].text
	self.privacy = xml_element.elements['privacy'].text
	self.inheritance_type = xml_element.elements['inheritanceType'].text
	self.user_join_policy = xml_element.elements['userJoinPolicy'].text
	self.default_permission_level = xml_element.elements['defaultPermissionLevel'].text
	self.owner = xml_element.elements['owner'].text
	self.contribution_policy = xml_element.elements['contributionPolicy'].text
	self.partner_sort_value = xml_element.elements['partnerSortValue'].text
	self.moderation = xml_element.elements['moderation'].text
end