Class: Kaltura::KalturaLikeBaseFilter

Inherits:
KalturaRelatedFilter show all
Defined in:
lib/kaltura_plugins/kaltura_like_client_plugin.rb

Direct Known Subclasses

KalturaLikeFilter

Instance Attribute Summary collapse

Attributes inherited from KalturaFilter

#advanced_search, #order_by

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#created_at_greater_than_or_equalObject

Returns the value of attribute created_at_greater_than_or_equal.



73
74
75
# File 'lib/kaltura_plugins/kaltura_like_client_plugin.rb', line 73

def created_at_greater_than_or_equal
  @created_at_greater_than_or_equal
end

#created_at_less_than_or_equalObject

Returns the value of attribute created_at_less_than_or_equal.



74
75
76
# File 'lib/kaltura_plugins/kaltura_like_client_plugin.rb', line 74

def created_at_less_than_or_equal
  @created_at_less_than_or_equal
end

#entry_id_equalObject

Returns the value of attribute entry_id_equal.



71
72
73
# File 'lib/kaltura_plugins/kaltura_like_client_plugin.rb', line 71

def entry_id_equal
  @entry_id_equal
end

#user_id_equalObject

Returns the value of attribute user_id_equal.



72
73
74
# File 'lib/kaltura_plugins/kaltura_like_client_plugin.rb', line 72

def user_id_equal
  @user_id_equal
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



83
84
85
86
87
88
89
# File 'lib/kaltura_plugins/kaltura_like_client_plugin.rb', line 83

def from_xml(xml_element)
	super
	self.entry_id_equal = xml_element.elements['entryIdEqual'].text
	self.user_id_equal = xml_element.elements['userIdEqual'].text
	self.created_at_greater_than_or_equal = xml_element.elements['createdAtGreaterThanOrEqual'].text
	self.created_at_less_than_or_equal = xml_element.elements['createdAtLessThanOrEqual'].text
end