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.



14613
14614
14615
# File 'lib/kaltura_types.rb', line 14613

def data
  @data
end

#notification_resultObject

Returns the value of attribute notification_result.



14615
14616
14617
# File 'lib/kaltura_types.rb', line 14615

def notification_result
  @notification_result
end

#number_of_attemptsObject

Returns the value of attribute number_of_attempts.



14614
14615
14616
# File 'lib/kaltura_types.rb', line 14614

def number_of_attempts
  @number_of_attempts
end

#obj_typeObject

Returns the value of attribute obj_type.



14616
14617
14618
# File 'lib/kaltura_types.rb', line 14616

def obj_type
  @obj_type
end

#object_idObject

Returns the value of attribute object_id.



14611
14612
14613
# File 'lib/kaltura_types.rb', line 14611

def object_id
  @object_id
end

#statusObject

Returns the value of attribute status.



14612
14613
14614
# File 'lib/kaltura_types.rb', line 14612

def status
  @status
end

#typeObject

Returns the value of attribute type.



14609
14610
14611
# File 'lib/kaltura_types.rb', line 14609

def type
  @type
end

#type_as_stringObject

Returns the value of attribute type_as_string.



14610
14611
14612
# File 'lib/kaltura_types.rb', line 14610

def type_as_string
  @type_as_string
end

#user_idObject

Returns the value of attribute user_id.



14608
14609
14610
# File 'lib/kaltura_types.rb', line 14608

def user_id
  @user_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



14631
14632
14633
14634
14635
14636
14637
14638
14639
14640
14641
14642
14643
14644
14645
14646
14647
14648
14649
14650
14651
14652
14653
14654
14655
14656
14657
14658
14659
14660
# File 'lib/kaltura_types.rb', line 14631

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