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.



11417
11418
11419
# File 'lib/kaltura_types.rb', line 11417

def access_control_profile_id
  @access_control_profile_id
end

#categoryObject

Returns the value of attribute category.



11418
11419
11420
# File 'lib/kaltura_types.rb', line 11418

def category
  @category
end

#content_typeObject

Returns the value of attribute content_type.



11415
11416
11417
# File 'lib/kaltura_types.rb', line 11415

def content_type
  @content_type
end

#conversion_profile_idObject

Returns the value of attribute conversion_profile_id.



11416
11417
11418
# File 'lib/kaltura_types.rb', line 11416

def conversion_profile_id
  @conversion_profile_id
end

#creator_idObject

Returns the value of attribute creator_id.



11427
11428
11429
# File 'lib/kaltura_types.rb', line 11427

def creator_id
  @creator_id
end

#descriptionObject

Returns the value of attribute description.



11412
11413
11414
# File 'lib/kaltura_types.rb', line 11412

def description
  @description
end

#entitled_users_editObject

Returns the value of attribute entitled_users_edit.



11428
11429
11430
# File 'lib/kaltura_types.rb', line 11428

def entitled_users_edit
  @entitled_users_edit
end

#entitled_users_publishObject

Returns the value of attribute entitled_users_publish.



11429
11430
11431
# File 'lib/kaltura_types.rb', line 11429

def entitled_users_publish
  @entitled_users_publish
end

#entry_idObject

Returns the value of attribute entry_id.



11410
11411
11412
# File 'lib/kaltura_types.rb', line 11410

def entry_id
  @entry_id
end

#entry_statusObject

Returns the value of attribute entry_status.



11421
11422
11423
# File 'lib/kaltura_types.rb', line 11421

def entry_status
  @entry_status
end

#owner_idObject

Returns the value of attribute owner_id.



11430
11431
11432
# File 'lib/kaltura_types.rb', line 11430

def owner_id
  @owner_id
end

#reference_idObject

Returns the value of attribute reference_id.



11431
11432
11433
# File 'lib/kaltura_types.rb', line 11431

def reference_id
  @reference_id
end

#schedule_end_dateObject

Returns the value of attribute schedule_end_date.



11420
11421
11422
# File 'lib/kaltura_types.rb', line 11420

def schedule_end_date
  @schedule_end_date
end

#schedule_start_dateObject

Returns the value of attribute schedule_start_date.



11419
11420
11421
# File 'lib/kaltura_types.rb', line 11419

def schedule_start_date
  @schedule_start_date
end

#ssh_key_passphraseObject

Returns the value of attribute ssh_key_passphrase.



11426
11427
11428
# File 'lib/kaltura_types.rb', line 11426

def ssh_key_passphrase
  @ssh_key_passphrase
end

#ssh_private_keyObject

Returns the value of attribute ssh_private_key.



11424
11425
11426
# File 'lib/kaltura_types.rb', line 11424

def ssh_private_key
  @ssh_private_key
end

#ssh_public_keyObject

Returns the value of attribute ssh_public_key.



11425
11426
11427
# File 'lib/kaltura_types.rb', line 11425

def ssh_public_key
  @ssh_public_key
end

#tagsObject

Returns the value of attribute tags.



11413
11414
11415
# File 'lib/kaltura_types.rb', line 11413

def tags
  @tags
end

#template_entry_idObject

Returns the value of attribute template_entry_id.



11432
11433
11434
# File 'lib/kaltura_types.rb', line 11432

def template_entry_id
  @template_entry_id
end

#thumbnail_savedObject

Returns the value of attribute thumbnail_saved.



11423
11424
11425
# File 'lib/kaltura_types.rb', line 11423

def thumbnail_saved
  @thumbnail_saved
end

#thumbnail_urlObject

Returns the value of attribute thumbnail_url.



11422
11423
11424
# File 'lib/kaltura_types.rb', line 11422

def thumbnail_url
  @thumbnail_url
end

#titleObject

Returns the value of attribute title.



11411
11412
11413
# File 'lib/kaltura_types.rb', line 11411

def title
  @title
end

#urlObject

Returns the value of attribute url.



11414
11415
11416
# File 'lib/kaltura_types.rb', line 11414

def url
  @url
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11453
11454
11455
11456
11457
11458
11459
11460
11461
11462
11463
11464
11465
11466
11467
11468
11469
11470
11471
11472
11473
11474
11475
11476
11477
11478
11479
11480
11481
11482
11483
11484
11485
11486
11487
11488
11489
11490
11491
11492
11493
11494
11495
11496
11497
11498
11499
11500
11501
11502
11503
11504
11505
11506
11507
11508
11509
11510
11511
11512
11513
11514
11515
11516
11517
11518
11519
11520
11521
11522
11523
11524
# File 'lib/kaltura_types.rb', line 11453

def from_xml(xml_element)
	super
	if xml_element.elements['entryId'] != nil
		self.entry_id = xml_element.elements['entryId'].text
	end
	if xml_element.elements['title'] != nil
		self.title = xml_element.elements['title'].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['url'] != nil
		self.url = xml_element.elements['url'].text
	end
	if xml_element.elements['contentType'] != nil
		self.content_type = xml_element.elements['contentType'].text
	end
	if xml_element.elements['conversionProfileId'] != nil
		self.conversion_profile_id = xml_element.elements['conversionProfileId'].text
	end
	if xml_element.elements['accessControlProfileId'] != nil
		self.access_control_profile_id = xml_element.elements['accessControlProfileId'].text
	end
	if xml_element.elements['category'] != nil
		self.category = xml_element.elements['category'].text
	end
	if xml_element.elements['scheduleStartDate'] != nil
		self.schedule_start_date = xml_element.elements['scheduleStartDate'].text
	end
	if xml_element.elements['scheduleEndDate'] != nil
		self.schedule_end_date = xml_element.elements['scheduleEndDate'].text
	end
	if xml_element.elements['entryStatus'] != nil
		self.entry_status = xml_element.elements['entryStatus'].text
	end
	if xml_element.elements['thumbnailUrl'] != nil
		self.thumbnail_url = xml_element.elements['thumbnailUrl'].text
	end
	if xml_element.elements['thumbnailSaved'] != nil
		self.thumbnail_saved = xml_element.elements['thumbnailSaved'].text
	end
	if xml_element.elements['sshPrivateKey'] != nil
		self.ssh_private_key = xml_element.elements['sshPrivateKey'].text
	end
	if xml_element.elements['sshPublicKey'] != nil
		self.ssh_public_key = xml_element.elements['sshPublicKey'].text
	end
	if xml_element.elements['sshKeyPassphrase'] != nil
		self.ssh_key_passphrase = xml_element.elements['sshKeyPassphrase'].text
	end
	if xml_element.elements['creatorId'] != nil
		self.creator_id = xml_element.elements['creatorId'].text
	end
	if xml_element.elements['entitledUsersEdit'] != nil
		self.entitled_users_edit = xml_element.elements['entitledUsersEdit'].text
	end
	if xml_element.elements['entitledUsersPublish'] != nil
		self.entitled_users_publish = xml_element.elements['entitledUsersPublish'].text
	end
	if xml_element.elements['ownerId'] != nil
		self.owner_id = xml_element.elements['ownerId'].text
	end
	if xml_element.elements['referenceId'] != nil
		self.reference_id = xml_element.elements['referenceId'].text
	end
	if xml_element.elements['templateEntryId'] != nil
		self.template_entry_id = xml_element.elements['templateEntryId'].text
	end
end