Class: Kaltura::KalturaViewHistoryUserEntryAdvancedFilter
- Inherits:
-
KalturaSearchItem
- Object
- KalturaObjectBase
- KalturaSearchItem
- Kaltura::KalturaViewHistoryUserEntryAdvancedFilter
- Defined in:
- lib/kaltura_plugins/kaltura_view_history_client_plugin.rb
Instance Attribute Summary collapse
-
#extended_status_equal ⇒ Object
Returns the value of attribute extended_status_equal.
-
#extended_status_in ⇒ Object
Returns the value of attribute extended_status_in.
-
#id_equal ⇒ Object
Returns the value of attribute id_equal.
-
#id_in ⇒ Object
Returns the value of attribute id_in.
-
#updated_at_greater_than_or_equal ⇒ Object
Returns the value of attribute updated_at_greater_than_or_equal.
-
#updated_at_less_than_or_equal ⇒ Object
Returns the value of attribute updated_at_less_than_or_equal.
-
#user_id_equal ⇒ Object
Returns the value of attribute user_id_equal.
-
#user_id_in ⇒ Object
Returns the value of attribute user_id_in.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#extended_status_equal ⇒ Object
Returns the value of attribute extended_status_equal.
73 74 75 |
# File 'lib/kaltura_plugins/kaltura_view_history_client_plugin.rb', line 73 def extended_status_equal @extended_status_equal end |
#extended_status_in ⇒ Object
Returns the value of attribute extended_status_in.
74 75 76 |
# File 'lib/kaltura_plugins/kaltura_view_history_client_plugin.rb', line 74 def extended_status_in @extended_status_in end |
#id_equal ⇒ Object
Returns the value of attribute id_equal.
67 68 69 |
# File 'lib/kaltura_plugins/kaltura_view_history_client_plugin.rb', line 67 def id_equal @id_equal end |
#id_in ⇒ Object
Returns the value of attribute id_in.
68 69 70 |
# File 'lib/kaltura_plugins/kaltura_view_history_client_plugin.rb', line 68 def id_in @id_in end |
#updated_at_greater_than_or_equal ⇒ Object
Returns the value of attribute updated_at_greater_than_or_equal.
71 72 73 |
# File 'lib/kaltura_plugins/kaltura_view_history_client_plugin.rb', line 71 def updated_at_greater_than_or_equal @updated_at_greater_than_or_equal end |
#updated_at_less_than_or_equal ⇒ Object
Returns the value of attribute updated_at_less_than_or_equal.
72 73 74 |
# File 'lib/kaltura_plugins/kaltura_view_history_client_plugin.rb', line 72 def updated_at_less_than_or_equal @updated_at_less_than_or_equal end |
#user_id_equal ⇒ Object
Returns the value of attribute user_id_equal.
69 70 71 |
# File 'lib/kaltura_plugins/kaltura_view_history_client_plugin.rb', line 69 def user_id_equal @user_id_equal end |
#user_id_in ⇒ Object
Returns the value of attribute user_id_in.
70 71 72 |
# File 'lib/kaltura_plugins/kaltura_view_history_client_plugin.rb', line 70 def user_id_in @user_id_in end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/kaltura_plugins/kaltura_view_history_client_plugin.rb', line 77 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 |