Class: Kaltura::KalturaViewHistoryUserEntryAdvancedFilter

Inherits:
KalturaSearchItem show all
Defined in:
lib/kaltura_plugins/kaltura_view_history_client_plugin.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

#extended_status_equalObject

Returns the value of attribute extended_status_equal.



68
69
70
# File 'lib/kaltura_plugins/kaltura_view_history_client_plugin.rb', line 68

def extended_status_equal
  @extended_status_equal
end

#extended_status_inObject

Returns the value of attribute extended_status_in.



69
70
71
# File 'lib/kaltura_plugins/kaltura_view_history_client_plugin.rb', line 69

def extended_status_in
  @extended_status_in
end

#id_equalObject

Returns the value of attribute id_equal.



62
63
64
# File 'lib/kaltura_plugins/kaltura_view_history_client_plugin.rb', line 62

def id_equal
  @id_equal
end

#id_inObject

Returns the value of attribute id_in.



63
64
65
# File 'lib/kaltura_plugins/kaltura_view_history_client_plugin.rb', line 63

def id_in
  @id_in
end

#updated_at_greater_than_or_equalObject

Returns the value of attribute updated_at_greater_than_or_equal.



66
67
68
# File 'lib/kaltura_plugins/kaltura_view_history_client_plugin.rb', line 66

def updated_at_greater_than_or_equal
  @updated_at_greater_than_or_equal
end

#updated_at_less_than_or_equalObject

Returns the value of attribute updated_at_less_than_or_equal.



67
68
69
# File 'lib/kaltura_plugins/kaltura_view_history_client_plugin.rb', line 67

def updated_at_less_than_or_equal
  @updated_at_less_than_or_equal
end

#user_id_equalObject

Returns the value of attribute user_id_equal.



64
65
66
# File 'lib/kaltura_plugins/kaltura_view_history_client_plugin.rb', line 64

def user_id_equal
  @user_id_equal
end

#user_id_inObject

Returns the value of attribute user_id_in.



65
66
67
# File 'lib/kaltura_plugins/kaltura_view_history_client_plugin.rb', line 65

def user_id_in
  @user_id_in
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# File 'lib/kaltura_plugins/kaltura_view_history_client_plugin.rb', line 72

def from_xml(xml_element)
	super
	if xml_element.elements['idEqual'] != nil
		self.id_equal = xml_element.elements['idEqual'].text
	end
	if xml_element.elements['idIn'] != nil
		self.id_in = xml_element.elements['idIn'].text
	end
	if xml_element.elements['userIdEqual'] != nil
		self.user_id_equal = xml_element.elements['userIdEqual'].text
	end
	if xml_element.elements['userIdIn'] != nil
		self.user_id_in = xml_element.elements['userIdIn'].text
	end
	if xml_element.elements['updatedAtGreaterThanOrEqual'] != nil
		self.updated_at_greater_than_or_equal = xml_element.elements['updatedAtGreaterThanOrEqual'].text
	end
	if xml_element.elements['updatedAtLessThanOrEqual'] != nil
		self.updated_at_less_than_or_equal = xml_element.elements['updatedAtLessThanOrEqual'].text
	end
	if xml_element.elements['extendedStatusEqual'] != nil
		self.extended_status_equal = xml_element.elements['extendedStatusEqual'].text
	end
	if xml_element.elements['extendedStatusIn'] != nil
		self.extended_status_in = xml_element.elements['extendedStatusIn'].text
	end
end