Class: Kaltura::KalturaSchedulerStatus

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

#idObject

The id of the Category



5430
5431
5432
# File 'lib/kaltura_types.rb', line 5430

def id
  @id
end

#scheduler_configured_idObject

The configured id of the scheduler



5432
5433
5434
# File 'lib/kaltura_types.rb', line 5432

def scheduler_configured_id
  @scheduler_configured_id
end

#scheduler_idObject

The id of the scheduler



5442
5443
5444
# File 'lib/kaltura_types.rb', line 5442

def scheduler_id
  @scheduler_id
end

#typeObject

The status type



5438
5439
5440
# File 'lib/kaltura_types.rb', line 5438

def type
  @type
end

#valueObject

The status value



5440
5441
5442
# File 'lib/kaltura_types.rb', line 5440

def value
  @value
end

#worker_configured_idObject

The configured id of the job worker



5434
5435
5436
# File 'lib/kaltura_types.rb', line 5434

def worker_configured_id
  @worker_configured_id
end

#worker_idObject

The id of the worker



5444
5445
5446
# File 'lib/kaltura_types.rb', line 5444

def worker_id
  @worker_id
end

#worker_typeObject

The type of the job worker.



5436
5437
5438
# File 'lib/kaltura_types.rb', line 5436

def worker_type
  @worker_type
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
# File 'lib/kaltura_types.rb', line 5468

def from_xml(xml_element)
	super
	if xml_element.elements['id'] != nil
		self.id = xml_element.elements['id'].text
	end
	if xml_element.elements['schedulerConfiguredId'] != nil
		self.scheduler_configured_id = xml_element.elements['schedulerConfiguredId'].text
	end
	if xml_element.elements['workerConfiguredId'] != nil
		self.worker_configured_id = xml_element.elements['workerConfiguredId'].text
	end
	if xml_element.elements['workerType'] != nil
		self.worker_type = xml_element.elements['workerType'].text
	end
	if xml_element.elements['type'] != nil
		self.type = xml_element.elements['type'].text
	end
	if xml_element.elements['value'] != nil
		self.value = xml_element.elements['value'].text
	end
	if xml_element.elements['schedulerId'] != nil
		self.scheduler_id = xml_element.elements['schedulerId'].text
	end
	if xml_element.elements['workerId'] != nil
		self.worker_id = xml_element.elements['workerId'].text
	end
end