Class: Kaltura::KalturaNotificationJobData

Inherits:
KalturaJobData 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

#dataObject

Returns the value of attribute data.



9414
9415
9416
# File 'lib/kaltura_types.rb', line 9414

def data
  @data
end

#notification_resultObject

Returns the value of attribute notification_result.



9416
9417
9418
# File 'lib/kaltura_types.rb', line 9416

def notification_result
  @notification_result
end

#number_of_attemptsObject

Returns the value of attribute number_of_attempts.



9415
9416
9417
# File 'lib/kaltura_types.rb', line 9415

def number_of_attempts
  @number_of_attempts
end

#obj_typeObject

Returns the value of attribute obj_type.



9417
9418
9419
# File 'lib/kaltura_types.rb', line 9417

def obj_type
  @obj_type
end

#object_idObject

Returns the value of attribute object_id.



9412
9413
9414
# File 'lib/kaltura_types.rb', line 9412

def object_id
  @object_id
end

#statusObject

Returns the value of attribute status.



9413
9414
9415
# File 'lib/kaltura_types.rb', line 9413

def status
  @status
end

#typeObject

Returns the value of attribute type.



9410
9411
9412
# File 'lib/kaltura_types.rb', line 9410

def type
  @type
end

#type_as_stringObject

Returns the value of attribute type_as_string.



9411
9412
9413
# File 'lib/kaltura_types.rb', line 9411

def type_as_string
  @type_as_string
end

#user_idObject

Returns the value of attribute user_id.



9409
9410
9411
# File 'lib/kaltura_types.rb', line 9409

def user_id
  @user_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



9432
9433
9434
9435
9436
9437
9438
9439
9440
9441
9442
9443
# File 'lib/kaltura_types.rb', line 9432

def from_xml(xml_element)
	super
	self.user_id = xml_element.elements['userId'].text
	self.type = xml_element.elements['type'].text
	self.type_as_string = xml_element.elements['typeAsString'].text
	self.object_id = xml_element.elements['objectId'].text
	self.status = xml_element.elements['status'].text
	self.data = xml_element.elements['data'].text
	self.number_of_attempts = xml_element.elements['numberOfAttempts'].text
	self.notification_result = xml_element.elements['notificationResult'].text
	self.obj_type = xml_element.elements['objType'].text
end