Class: Kaltura::KalturaBulkUpload

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

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#bulk_file_urlObject

Returns the value of attribute bulk_file_url.



1291
1292
1293
# File 'lib/kaltura_types.rb', line 1291

def bulk_file_url
  @bulk_file_url
end

#bulk_upload_object_typeObject

Returns the value of attribute bulk_upload_object_type.



1300
1301
1302
# File 'lib/kaltura_types.rb', line 1300

def bulk_upload_object_type
  @bulk_upload_object_type
end

#bulk_upload_typeObject

Returns the value of attribute bulk_upload_type.



1292
1293
1294
# File 'lib/kaltura_types.rb', line 1292

def bulk_upload_type
  @bulk_upload_type
end

#csv_file_urlObject

Returns the value of attribute csv_file_url.



1290
1291
1292
# File 'lib/kaltura_types.rb', line 1290

def csv_file_url
  @csv_file_url
end

#descriptionObject

Returns the value of attribute description.



1298
1299
1300
# File 'lib/kaltura_types.rb', line 1298

def description
  @description
end

#errorObject

Returns the value of attribute error.



1294
1295
1296
# File 'lib/kaltura_types.rb', line 1294

def error
  @error
end

#error_numberObject

Returns the value of attribute error_number.



1296
1297
1298
# File 'lib/kaltura_types.rb', line 1296

def error_number
  @error_number
end

#error_typeObject

Returns the value of attribute error_type.



1295
1296
1297
# File 'lib/kaltura_types.rb', line 1295

def error_type
  @error_type
end

#file_nameObject

Returns the value of attribute file_name.



1297
1298
1299
# File 'lib/kaltura_types.rb', line 1297

def file_name
  @file_name
end

#idObject

Returns the value of attribute id.



1283
1284
1285
# File 'lib/kaltura_types.rb', line 1283

def id
  @id
end

#log_file_urlObject

Returns the value of attribute log_file_url.



1289
1290
1291
# File 'lib/kaltura_types.rb', line 1289

def log_file_url
  @log_file_url
end

#num_of_entriesObject

Returns the value of attribute num_of_entries.



1287
1288
1289
# File 'lib/kaltura_types.rb', line 1287

def num_of_entries
  @num_of_entries
end

#num_of_objectsObject

Returns the value of attribute num_of_objects.



1299
1300
1301
# File 'lib/kaltura_types.rb', line 1299

def num_of_objects
  @num_of_objects
end

#resultsObject

Returns the value of attribute results.



1293
1294
1295
# File 'lib/kaltura_types.rb', line 1293

def results
  @results
end

#statusObject

Returns the value of attribute status.



1288
1289
1290
# File 'lib/kaltura_types.rb', line 1288

def status
  @status
end

#uploaded_byObject

Returns the value of attribute uploaded_by.



1284
1285
1286
# File 'lib/kaltura_types.rb', line 1284

def uploaded_by
  @uploaded_by
end

#uploaded_by_user_idObject

Returns the value of attribute uploaded_by_user_id.



1285
1286
1287
# File 'lib/kaltura_types.rb', line 1285

def uploaded_by_user_id
  @uploaded_by_user_id
end

#uploaded_onObject

Returns the value of attribute uploaded_on.



1286
1287
1288
# File 'lib/kaltura_types.rb', line 1286

def uploaded_on
  @uploaded_on
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
# File 'lib/kaltura_types.rb', line 1324

def from_xml(xml_element)
	super
	self.id = xml_element.elements['id'].text
	self.uploaded_by = xml_element.elements['uploadedBy'].text
	self.uploaded_by_user_id = xml_element.elements['uploadedByUserId'].text
	self.uploaded_on = xml_element.elements['uploadedOn'].text
	self.num_of_entries = xml_element.elements['numOfEntries'].text
	self.status = xml_element.elements['status'].text
	self.log_file_url = xml_element.elements['logFileUrl'].text
	self.csv_file_url = xml_element.elements['csvFileUrl'].text
	self.bulk_file_url = xml_element.elements['bulkFileUrl'].text
	self.bulk_upload_type = xml_element.elements['bulkUploadType'].text
	self.results = KalturaClientBase.object_from_xml(xml_element.elements['results'], 'KalturaBulkUploadResult')
	self.error = xml_element.elements['error'].text
	self.error_type = xml_element.elements['errorType'].text
	self.error_number = xml_element.elements['errorNumber'].text
	self.file_name = xml_element.elements['fileName'].text
	self.description = xml_element.elements['description'].text
	self.num_of_objects = xml_element.elements['numOfObjects'].text
	self.bulk_upload_object_type = xml_element.elements['bulkUploadObjectType'].text
end