Class: Kaltura::KalturaBatchHistoryData

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

#batch_indexObject

Returns the value of attribute batch_index.



966
967
968
# File 'lib/kaltura_types.rb', line 966

def batch_index
  @batch_index
end

#err_numberObject

Returns the value of attribute err_number.



970
971
972
# File 'lib/kaltura_types.rb', line 970

def err_number
  @err_number
end

#err_typeObject

Returns the value of attribute err_type.



969
970
971
# File 'lib/kaltura_types.rb', line 969

def err_type
  @err_type
end

#host_nameObject

Returns the value of attribute host_name.



971
972
973
# File 'lib/kaltura_types.rb', line 971

def host_name
  @host_name
end

#messageObject

Returns the value of attribute message.



968
969
970
# File 'lib/kaltura_types.rb', line 968

def message
  @message
end

#scheduler_idObject

Returns the value of attribute scheduler_id.



964
965
966
# File 'lib/kaltura_types.rb', line 964

def scheduler_id
  @scheduler_id
end

#session_idObject

Returns the value of attribute session_id.



972
973
974
# File 'lib/kaltura_types.rb', line 972

def session_id
  @session_id
end

#time_stampObject

Returns the value of attribute time_stamp.



967
968
969
# File 'lib/kaltura_types.rb', line 967

def time_stamp
  @time_stamp
end

#worker_idObject

Returns the value of attribute worker_id.



965
966
967
# File 'lib/kaltura_types.rb', line 965

def worker_id
  @worker_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



993
994
995
996
997
998
999
1000
1001
1002
1003
1004
# File 'lib/kaltura_types.rb', line 993

def from_xml(xml_element)
	super
	self.scheduler_id = xml_element.elements['schedulerId'].text
	self.worker_id = xml_element.elements['workerId'].text
	self.batch_index = xml_element.elements['batchIndex'].text
	self.time_stamp = xml_element.elements['timeStamp'].text
	self.message = xml_element.elements['message'].text
	self.err_type = xml_element.elements['errType'].text
	self.err_number = xml_element.elements['errNumber'].text
	self.host_name = xml_element.elements['hostName'].text
	self.session_id = xml_element.elements['sessionId'].text
end