Class: Kaltura::KalturaCategoryFilter

Inherits:
KalturaCategoryBaseFilter show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaCategoryBaseFilter

#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, #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

#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

#ancestor_id_inObject

not includes the category itself (only sub categories)



12408
12409
12410
# File 'lib/kaltura_types.rb', line 12408

def ancestor_id_in
  @ancestor_id_in
end

#free_textObject

Returns the value of attribute free_text.



12400
12401
12402
# File 'lib/kaltura_types.rb', line 12400

def free_text
  @free_text
end

#full_name_starts_with_inObject

Returns the value of attribute full_name_starts_with_in.



12405
12406
12407
# File 'lib/kaltura_types.rb', line 12405

def full_name_starts_with_in
  @full_name_starts_with_in
end

#id_or_inherited_parent_id_inObject

Returns the value of attribute id_or_inherited_parent_id_in.



12409
12410
12411
# File 'lib/kaltura_types.rb', line 12409

def id_or_inherited_parent_id_in
  @id_or_inherited_parent_id_in
end

#manager_equalObject

Returns the value of attribute manager_equal.



12403
12404
12405
# File 'lib/kaltura_types.rb', line 12403

def manager_equal
  @manager_equal
end

#member_equalObject

Returns the value of attribute member_equal.



12404
12405
12406
# File 'lib/kaltura_types.rb', line 12404

def member_equal
  @member_equal
end

#members_inObject

Returns the value of attribute members_in.



12401
12402
12403
# File 'lib/kaltura_types.rb', line 12401

def members_in
  @members_in
end

#name_or_reference_id_starts_withObject

Returns the value of attribute name_or_reference_id_starts_with.



12402
12403
12404
# File 'lib/kaltura_types.rb', line 12402

def name_or_reference_id_starts_with
  @name_or_reference_id_starts_with
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



12412
12413
12414
12415
12416
12417
12418
12419
12420
12421
12422
# File 'lib/kaltura_types.rb', line 12412

def from_xml(xml_element)
  super
  self.free_text = xml_element.elements['freeText'].text
  self.members_in = xml_element.elements['membersIn'].text
  self.name_or_reference_id_starts_with = xml_element.elements['nameOrReferenceIdStartsWith'].text
  self.manager_equal = xml_element.elements['managerEqual'].text
  self.member_equal = xml_element.elements['memberEqual'].text
  self.full_name_starts_with_in = xml_element.elements['fullNameStartsWithIn'].text
  self.ancestor_id_in = xml_element.elements['ancestorIdIn'].text
  self.id_or_inherited_parent_id_in = xml_element.elements['idOrInheritedParentIdIn'].text
end