Class: Kaltura::KalturaCategoryFilter
- Inherits:
-
KalturaCategoryBaseFilter
- Object
- KalturaObjectBase
- KalturaFilter
- KalturaRelatedFilter
- KalturaCategoryBaseFilter
- Kaltura::KalturaCategoryFilter
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#ancestor_id_in ⇒ Object
not includes the category itself (only sub categories).
-
#free_text ⇒ Object
Returns the value of attribute free_text.
-
#full_name_starts_with_in ⇒ Object
Returns the value of attribute full_name_starts_with_in.
-
#id_or_inherited_parent_id_in ⇒ Object
Returns the value of attribute id_or_inherited_parent_id_in.
-
#manager_equal ⇒ Object
Returns the value of attribute manager_equal.
-
#member_equal ⇒ Object
Returns the value of attribute member_equal.
-
#members_in ⇒ Object
Returns the value of attribute members_in.
-
#name_or_reference_id_starts_with ⇒ Object
Returns the value of attribute name_or_reference_id_starts_with.
Attributes inherited from KalturaCategoryBaseFilter
#aggregation_categories_multi_like_and, #aggregation_categories_multi_like_or, #appear_in_list_equal, #contribution_policy_equal, #created_at_greater_than_or_equal, #created_at_less_than_or_equal, #depth_equal, #full_ids_equal, #full_ids_match_or, #full_ids_starts_with, #full_name_equal, #full_name_in, #full_name_starts_with, #id_equal, #id_in, #id_not_in, #inheritance_type_equal, #inheritance_type_in, #inherited_parent_id_equal, #inherited_parent_id_in, #members_count_greater_than_or_equal, #members_count_less_than_or_equal, #parent_id_equal, #parent_id_in, #partner_sort_value_greater_than_or_equal, #partner_sort_value_less_than_or_equal, #pending_members_count_greater_than_or_equal, #pending_members_count_less_than_or_equal, #privacy_context_equal, #privacy_equal, #privacy_in, #reference_id_empty, #reference_id_equal, #status_equal, #status_in, #tags_like, #tags_multi_like_and, #tags_multi_like_or, #updated_at_greater_than_or_equal, #updated_at_less_than_or_equal
Attributes inherited from KalturaFilter
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#ancestor_id_in ⇒ Object
not includes the category itself (only sub categories)
18910 18911 18912 |
# File 'lib/kaltura_types.rb', line 18910 def ancestor_id_in @ancestor_id_in end |
#free_text ⇒ Object
Returns the value of attribute free_text.
18903 18904 18905 |
# File 'lib/kaltura_types.rb', line 18903 def free_text @free_text end |
#full_name_starts_with_in ⇒ Object
Returns the value of attribute full_name_starts_with_in.
18908 18909 18910 |
# File 'lib/kaltura_types.rb', line 18908 def full_name_starts_with_in @full_name_starts_with_in end |
#id_or_inherited_parent_id_in ⇒ Object
Returns the value of attribute id_or_inherited_parent_id_in.
18911 18912 18913 |
# File 'lib/kaltura_types.rb', line 18911 def id_or_inherited_parent_id_in @id_or_inherited_parent_id_in end |
#manager_equal ⇒ Object
Returns the value of attribute manager_equal.
18906 18907 18908 |
# File 'lib/kaltura_types.rb', line 18906 def manager_equal @manager_equal end |
#member_equal ⇒ Object
Returns the value of attribute member_equal.
18907 18908 18909 |
# File 'lib/kaltura_types.rb', line 18907 def member_equal @member_equal end |
#members_in ⇒ Object
Returns the value of attribute members_in.
18904 18905 18906 |
# File 'lib/kaltura_types.rb', line 18904 def members_in @members_in end |
#name_or_reference_id_starts_with ⇒ Object
Returns the value of attribute name_or_reference_id_starts_with.
18905 18906 18907 |
# File 'lib/kaltura_types.rb', line 18905 def name_or_reference_id_starts_with @name_or_reference_id_starts_with end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 |
# File 'lib/kaltura_types.rb', line 18914 def from_xml(xml_element) super if xml_element.elements['freeText'] != nil self.free_text = xml_element.elements['freeText'].text end if xml_element.elements['membersIn'] != nil self.members_in = xml_element.elements['membersIn'].text end if xml_element.elements['nameOrReferenceIdStartsWith'] != nil self.name_or_reference_id_starts_with = xml_element.elements['nameOrReferenceIdStartsWith'].text end if xml_element.elements['managerEqual'] != nil self.manager_equal = xml_element.elements['managerEqual'].text end if xml_element.elements['memberEqual'] != nil self.member_equal = xml_element.elements['memberEqual'].text end if xml_element.elements['fullNameStartsWithIn'] != nil self.full_name_starts_with_in = xml_element.elements['fullNameStartsWithIn'].text end if xml_element.elements['ancestorIdIn'] != nil self.ancestor_id_in = xml_element.elements['ancestorIdIn'].text end if xml_element.elements['idOrInheritedParentIdIn'] != nil self.id_or_inherited_parent_id_in = xml_element.elements['idOrInheritedParentIdIn'].text end end |