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



5190
5191
5192
# File 'lib/kaltura_types.rb', line 5190

def id
  @id
end

#scheduler_configured_idObject

The configured id of the scheduler



5193
5194
5195
# File 'lib/kaltura_types.rb', line 5193

def scheduler_configured_id
  @scheduler_configured_id
end

#scheduler_idObject

The id of the scheduler



5208
5209
5210
# File 'lib/kaltura_types.rb', line 5208

def scheduler_id
  @scheduler_id
end

#typeObject

The status type



5202
5203
5204
# File 'lib/kaltura_types.rb', line 5202

def type
  @type
end

#valueObject

The status value



5205
5206
5207
# File 'lib/kaltura_types.rb', line 5205

def value
  @value
end

#worker_configured_idObject

The configured id of the job worker



5196
5197
5198
# File 'lib/kaltura_types.rb', line 5196

def worker_configured_id
  @worker_configured_id
end

#worker_idObject

The id of the worker



5211
5212
5213
# File 'lib/kaltura_types.rb', line 5211

def worker_id
  @worker_id
end

#worker_typeObject

The type of the job worker.



5199
5200
5201
# File 'lib/kaltura_types.rb', line 5199

def worker_type
  @worker_type
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
# File 'lib/kaltura_types.rb', line 5235

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