Class: Kaltura::KalturaBulkUploadResultEntry

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

#access_control_profile_idObject

Returns the value of attribute access_control_profile_id.



7592
7593
7594
# File 'lib/kaltura_types.rb', line 7592

def access_control_profile_id
  @access_control_profile_id
end

#categoryObject

Returns the value of attribute category.



7593
7594
7595
# File 'lib/kaltura_types.rb', line 7593

def category
  @category
end

#content_typeObject

Returns the value of attribute content_type.



7590
7591
7592
# File 'lib/kaltura_types.rb', line 7590

def content_type
  @content_type
end

#conversion_profile_idObject

Returns the value of attribute conversion_profile_id.



7591
7592
7593
# File 'lib/kaltura_types.rb', line 7591

def conversion_profile_id
  @conversion_profile_id
end

#creator_idObject

Returns the value of attribute creator_id.



7602
7603
7604
# File 'lib/kaltura_types.rb', line 7602

def creator_id
  @creator_id
end

#descriptionObject

Returns the value of attribute description.



7587
7588
7589
# File 'lib/kaltura_types.rb', line 7587

def description
  @description
end

#entitled_users_editObject

Returns the value of attribute entitled_users_edit.



7603
7604
7605
# File 'lib/kaltura_types.rb', line 7603

def entitled_users_edit
  @entitled_users_edit
end

#entitled_users_publishObject

Returns the value of attribute entitled_users_publish.



7604
7605
7606
# File 'lib/kaltura_types.rb', line 7604

def entitled_users_publish
  @entitled_users_publish
end

#entry_idObject

Returns the value of attribute entry_id.



7585
7586
7587
# File 'lib/kaltura_types.rb', line 7585

def entry_id
  @entry_id
end

#entry_statusObject

Returns the value of attribute entry_status.



7596
7597
7598
# File 'lib/kaltura_types.rb', line 7596

def entry_status
  @entry_status
end

#owner_idObject

Returns the value of attribute owner_id.



7605
7606
7607
# File 'lib/kaltura_types.rb', line 7605

def owner_id
  @owner_id
end

#schedule_end_dateObject

Returns the value of attribute schedule_end_date.



7595
7596
7597
# File 'lib/kaltura_types.rb', line 7595

def schedule_end_date
  @schedule_end_date
end

#schedule_start_dateObject

Returns the value of attribute schedule_start_date.



7594
7595
7596
# File 'lib/kaltura_types.rb', line 7594

def schedule_start_date
  @schedule_start_date
end

#ssh_key_passphraseObject

Returns the value of attribute ssh_key_passphrase.



7601
7602
7603
# File 'lib/kaltura_types.rb', line 7601

def ssh_key_passphrase
  @ssh_key_passphrase
end

#ssh_private_keyObject

Returns the value of attribute ssh_private_key.



7599
7600
7601
# File 'lib/kaltura_types.rb', line 7599

def ssh_private_key
  @ssh_private_key
end

#ssh_public_keyObject

Returns the value of attribute ssh_public_key.



7600
7601
7602
# File 'lib/kaltura_types.rb', line 7600

def ssh_public_key
  @ssh_public_key
end

#tagsObject

Returns the value of attribute tags.



7588
7589
7590
# File 'lib/kaltura_types.rb', line 7588

def tags
  @tags
end

#thumbnail_savedObject

Returns the value of attribute thumbnail_saved.



7598
7599
7600
# File 'lib/kaltura_types.rb', line 7598

def thumbnail_saved
  @thumbnail_saved
end

#thumbnail_urlObject

Returns the value of attribute thumbnail_url.



7597
7598
7599
# File 'lib/kaltura_types.rb', line 7597

def thumbnail_url
  @thumbnail_url
end

#titleObject

Returns the value of attribute title.



7586
7587
7588
# File 'lib/kaltura_types.rb', line 7586

def title
  @title
end

#urlObject

Returns the value of attribute url.



7589
7590
7591
# File 'lib/kaltura_types.rb', line 7589

def url
  @url
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
# File 'lib/kaltura_types.rb', line 7626

def from_xml(xml_element)
	super
	self.entry_id = xml_element.elements['entryId'].text
	self.title = xml_element.elements['title'].text
	self.description = xml_element.elements['description'].text
	self.tags = xml_element.elements['tags'].text
	self.url = xml_element.elements['url'].text
	self.content_type = xml_element.elements['contentType'].text
	self.conversion_profile_id = xml_element.elements['conversionProfileId'].text
	self.access_control_profile_id = xml_element.elements['accessControlProfileId'].text
	self.category = xml_element.elements['category'].text
	self.schedule_start_date = xml_element.elements['scheduleStartDate'].text
	self.schedule_end_date = xml_element.elements['scheduleEndDate'].text
	self.entry_status = xml_element.elements['entryStatus'].text
	self.thumbnail_url = xml_element.elements['thumbnailUrl'].text
	self.thumbnail_saved = xml_element.elements['thumbnailSaved'].text
	self.ssh_private_key = xml_element.elements['sshPrivateKey'].text
	self.ssh_public_key = xml_element.elements['sshPublicKey'].text
	self.ssh_key_passphrase = xml_element.elements['sshKeyPassphrase'].text
	self.creator_id = xml_element.elements['creatorId'].text
	self.entitled_users_edit = xml_element.elements['entitledUsersEdit'].text
	self.entitled_users_publish = xml_element.elements['entitledUsersPublish'].text
	self.owner_id = xml_element.elements['ownerId'].text
end