Class: Kaltura::KalturaWatchLaterUserEntryAdvancedFilter
- Inherits:
-
KalturaSearchItem
- Object
- KalturaObjectBase
- KalturaSearchItem
- Kaltura::KalturaWatchLaterUserEntryAdvancedFilter
- Defined in:
- lib/kaltura_plugins/kaltura_watch_later_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.
48 49 50 |
# File 'lib/kaltura_plugins/kaltura_watch_later_client_plugin.rb', line 48 def extended_status_equal @extended_status_equal end |
#extended_status_in ⇒ Object
Returns the value of attribute extended_status_in.
49 50 51 |
# File 'lib/kaltura_plugins/kaltura_watch_later_client_plugin.rb', line 49 def extended_status_in @extended_status_in end |
#id_equal ⇒ Object
Returns the value of attribute id_equal.
42 43 44 |
# File 'lib/kaltura_plugins/kaltura_watch_later_client_plugin.rb', line 42 def id_equal @id_equal end |
#id_in ⇒ Object
Returns the value of attribute id_in.
43 44 45 |
# File 'lib/kaltura_plugins/kaltura_watch_later_client_plugin.rb', line 43 def id_in @id_in end |
#updated_at_greater_than_or_equal ⇒ Object
Returns the value of attribute updated_at_greater_than_or_equal.
46 47 48 |
# File 'lib/kaltura_plugins/kaltura_watch_later_client_plugin.rb', line 46 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.
47 48 49 |
# File 'lib/kaltura_plugins/kaltura_watch_later_client_plugin.rb', line 47 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.
44 45 46 |
# File 'lib/kaltura_plugins/kaltura_watch_later_client_plugin.rb', line 44 def user_id_equal @user_id_equal end |
#user_id_in ⇒ Object
Returns the value of attribute user_id_in.
45 46 47 |
# File 'lib/kaltura_plugins/kaltura_watch_later_client_plugin.rb', line 45 def user_id_in @user_id_in end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/kaltura_plugins/kaltura_watch_later_client_plugin.rb', line 61 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 |