Class: Kaltura::KalturaDocumentEntryBaseFilter
- Inherits:
-
KalturaBaseEntryFilter
- Object
- KalturaObjectBase
- KalturaFilter
- KalturaRelatedFilter
- KalturaBaseEntryBaseFilter
- KalturaBaseEntryFilter
- Kaltura::KalturaDocumentEntryBaseFilter
- Defined in:
- lib/kaltura_plugins/kaltura_document_client_plugin.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#asset_params_ids_match_and ⇒ Object
Returns the value of attribute asset_params_ids_match_and.
-
#asset_params_ids_match_or ⇒ Object
Returns the value of attribute asset_params_ids_match_or.
-
#document_type_equal ⇒ Object
Returns the value of attribute document_type_equal.
-
#document_type_in ⇒ Object
Returns the value of attribute document_type_in.
Attributes inherited from KalturaBaseEntryFilter
#categories_full_name_in, #category_ancestor_id_in, #conversion_profile_id_equal, #description_like, #excluded_free_text_groups, #free_text, #is_root, #redirect_from_entry_id
Attributes inherited from KalturaBaseEntryBaseFilter
#access_control_id_equal, #access_control_id_in, #admin_tags_like, #admin_tags_multi_like_and, #admin_tags_multi_like_or, #categories_ids_empty, #categories_ids_match_and, #categories_ids_match_or, #categories_ids_not_contains, #categories_match_and, #categories_match_or, #categories_not_contains, #created_at_greater_than_or_equal, #created_at_less_than_or_equal, #creator_id_equal, #end_date_greater_than_or_equal, #end_date_greater_than_or_equal_or_null, #end_date_less_than_or_equal, #end_date_less_than_or_equal_or_null, #entitled_users_edit_match_and, #entitled_users_edit_match_or, #entitled_users_publish_match_and, #entitled_users_publish_match_or, #entitled_users_view_match_and, #entitled_users_view_match_or, #group_id_equal, #id_equal, #id_in, #id_not_in, #moderation_status_equal, #moderation_status_in, #moderation_status_not_equal, #moderation_status_not_in, #name_equal, #name_like, #name_multi_like_and, #name_multi_like_or, #parent_entry_id_equal, #partner_id_equal, #partner_id_in, #partner_sort_value_greater_than_or_equal, #partner_sort_value_less_than_or_equal, #rank_greater_than_or_equal, #rank_less_than_or_equal, #reference_id_equal, #reference_id_in, #replaced_entry_id_equal, #replaced_entry_id_in, #replacement_status_equal, #replacement_status_in, #replacing_entry_id_equal, #replacing_entry_id_in, #root_entry_id_equal, #root_entry_id_in, #search_text_match_and, #search_text_match_or, #start_date_greater_than_or_equal, #start_date_greater_than_or_equal_or_null, #start_date_less_than_or_equal, #start_date_less_than_or_equal_or_null, #status_equal, #status_in, #status_not_equal, #status_not_in, #tags_admin_tags_multi_like_and, #tags_admin_tags_multi_like_or, #tags_admin_tags_name_multi_like_and, #tags_admin_tags_name_multi_like_or, #tags_like, #tags_multi_like_and, #tags_multi_like_or, #tags_name_multi_like_and, #tags_name_multi_like_or, #total_rank_greater_than_or_equal, #total_rank_less_than_or_equal, #type_equal, #type_in, #updated_at_greater_than_or_equal, #updated_at_less_than_or_equal, #user_id_equal, #user_id_in, #user_id_not_in
Attributes inherited from KalturaFilter
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#asset_params_ids_match_and ⇒ Object
Returns the value of attribute asset_params_ids_match_and.
310 311 312 |
# File 'lib/kaltura_plugins/kaltura_document_client_plugin.rb', line 310 def asset_params_ids_match_and @asset_params_ids_match_and end |
#asset_params_ids_match_or ⇒ Object
Returns the value of attribute asset_params_ids_match_or.
309 310 311 |
# File 'lib/kaltura_plugins/kaltura_document_client_plugin.rb', line 309 def asset_params_ids_match_or @asset_params_ids_match_or end |
#document_type_equal ⇒ Object
Returns the value of attribute document_type_equal.
307 308 309 |
# File 'lib/kaltura_plugins/kaltura_document_client_plugin.rb', line 307 def document_type_equal @document_type_equal end |
#document_type_in ⇒ Object
Returns the value of attribute document_type_in.
308 309 310 |
# File 'lib/kaltura_plugins/kaltura_document_client_plugin.rb', line 308 def document_type_in @document_type_in end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 |
# File 'lib/kaltura_plugins/kaltura_document_client_plugin.rb', line 316 def from_xml(xml_element) super if xml_element.elements['documentTypeEqual'] != nil self.document_type_equal = xml_element.elements['documentTypeEqual'].text end if xml_element.elements['documentTypeIn'] != nil self.document_type_in = xml_element.elements['documentTypeIn'].text end if xml_element.elements['assetParamsIdsMatchOr'] != nil self.asset_params_ids_match_or = xml_element.elements['assetParamsIdsMatchOr'].text end if xml_element.elements['assetParamsIdsMatchAnd'] != nil self.asset_params_ids_match_and = xml_element.elements['assetParamsIdsMatchAnd'].text end end |